[chromium-dev] Re: Writing tips to our build instructions?

2009-02-17 Thread Sam Kerner
Hironori, Good catch. I updated http://code.google.com/p/chromium/wiki/MacBuildInstructions with the following text: The path to the build directory should not contains spaces (e.g. ~/Mac OS X/chromium), as this will cause the build to fail. Sam On Mon, Feb 16, 2009 at 11:57 PM, Mohamed

[chromium-dev] Re: Incorrect files under \src\third_party\python_24?

2009-03-09 Thread Sam Kerner
Before python 2.5, a try block could not have both an except and finally block. (See http://docs.python.org/reference/compound_stmts.html#the-try-statement). In pre-2.5 python, you can get around this using two nested try blocks. try: try: blah() except: yada() finally:

Re: [chromium-dev] License implications on Chromium's design

2010-01-18 Thread Sam Kerner
On Mon, Jan 18, 2010 at 6:07 PM, Jerome Leclanche adys...@gmail.com wrote: Hi people I'm currently writing an IM client in C++ with Qt. I'm basing the entire UI strongly upon the Chromium philosophy - tabs on top, no menus, one global url bar, a new-tab page, so on. Before opening up the code