Re: [chromium-dev] Re: [chromium-reviews] Add the cmdline -open-in-new-window switch

2009-12-12 Thread Mike Mammarella
At least on Linux, this is currently a feature that we visibly lack compared to Firefox (and pretty much every other browser). In GNOME browsers tell the desktop environment how to open links in new windows as well as new tabs, or that they can't do that (like us), and the UI for selecting

[chromium-dev] Re: Clear Strict-Transport-Security state checkbox added

2009-09-17 Thread Mike Mammarella
There's a published paper about it too: http://www.adambarth.com/papers/2008/jackson-barth.pdf On Thu, Sep 17, 2009 at 4:34 PM, Robert Sesek rse...@chromium.org wrote: It clears the list of hosts in StrictTransportSecurityState: // StrictTransportSecurityState // // Tracks which hosts have

[chromium-dev] Re: Crashes due to 25633

2009-09-16 Thread Mike Mammarella
On Wed, Sep 16, 2009 at 12:59 PM, Evan Martin e...@chromium.org wrote: On Wed, Sep 16, 2009 at 12:44 PM, spotrh spo...@gmail.com wrote: On 09/16/2009 02:23 PM, Evan Martin wrote: What is the error message?  I wonder if there is something Linux-specific where we're getting an error code that

[chromium-dev] Re: Crashes due to 25633

2009-09-16 Thread Mike Mammarella
, 2009 at 1:21 PM, spotrh spo...@gmail.com wrote: On 09/16/2009 04:07 PM, Mike Mammarella wrote: FYI, I'm almost finished updating our (locally patched) SQLite to version 3.6.18 instead of 3.6.1 that we have now; apparently 3.6.18 handles corruption much better than 3.6.1 does. (I am holding off

[chromium-dev] Re: Platform parity

2009-09-02 Thread Mike Mammarella
Actually the Linux version already had the dialog, and the OS X version doesn't need it (at the moment) since there is no built-in password manager. So I think the bug is closed. --Mike On Tue, Sep 1, 2009 at 10:44 PM, Peter Kastingpkast...@google.com wrote: On Tue, Sep 1, 2009 at 8:04 PM, Tim

[chromium-dev] Re: desktop notifications, preliminary code for review

2009-08-05 Thread Mike Mammarella
On Linux you could probably get this effect by using the notify-send utility: http://manpages.ubuntu.com/manpages/gutsy/man1/notify-send.1.html http://www.galago-project.org/specs/notification/0.9/index.html --Mike On Wed, Aug 5, 2009 at 4:00 PM, Evan Martine...@chromium.org wrote: On Wed,

[chromium-dev] Re: [linux] creating desktop shortcuts

2009-08-04 Thread Mike Mammarella
There should also already be a desktop file for Chrome/Chromium on the system; you might consider using it as a template in order to create the desktop shortcut. You can find it by searching a set of directories given by the environment variables $XDG_DATA_HOME and $XDG_DATA_DIRS, the former

[chromium-dev] Re: [linux] creating desktop shortcuts

2009-08-04 Thread Mike Mammarella
a case when there is no desktop file? I don't have better idea than displaying an error message. On Tue, Aug 4, 2009 at 13:28, Mike Mammarella m...@chromium.org wrote: There should also already be a desktop file for Chrome/Chromium on the system; you might consider using it as a template

[chromium-dev] Re: Compiler warnings?

2009-07-23 Thread Mike Mammarella
gcc/g++ have __attribute__((warn_unused_result)) that you can specify on a per-function basis: http://www.ohse.de/uwe/articles/gcc-attributes.html#func-warn_unused_result Or do you mean warnings when a function is supposed to return a value but does not have a return statement at the end?

[chromium-dev] help with gyp?

2009-07-09 Thread Mike Mammarella
Hi all, I'm trying to add a file which needs to be processed autoconf-style at compile time. It's a script with things like @@FOO@@ that are values known at the time gyp runs, but which should actually be substituted during the compile when the .in version of the script is processed and written