diff options
author | tim@chromium.org <tim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-25 23:09:36 +0000 |
---|---|---|
committer | tim@chromium.org <tim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-25 23:09:36 +0000 |
commit | 2186fec4df1dde813a12011eb1ea650ce8470ea2 (patch) | |
tree | 96ebaec4e2e3bf246f0730b7093d153011fbbd7b /chrome/common/chrome_switches.h | |
parent | b17b3c8b37c0acd4528a338583f851a5a10063b0 (diff) | |
download | chromium_src-2186fec4df1dde813a12011eb1ea650ce8470ea2.zip chromium_src-2186fec4df1dde813a12011eb1ea650ce8470ea2.tar.gz chromium_src-2186fec4df1dde813a12011eb1ea650ce8470ea2.tar.bz2 |
Second attempt at the new syncer thread impl, now with less crashes!
Previous one at http://codereview.chromium.org/214033.
I had local edits that resulted in initializing the CommandLine for syncapi,
but didn't have them as part of the patch, so this was causing a crash whenever
SyncerThreadFactory::Create was called. The only diff here is the call to
CommandLine::Init in syncapi.cc. This effectively means you can't change the
syncer thread impl on linux (we init an empty command line there), but this is
OK. Once we link statically we won't need to do this.
TEST=ProfileSyncServiceTest, SyncerThreadTest, SyncerThreadWithSyncerTest
Review URL: http://codereview.chromium.org/250001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27281 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common/chrome_switches.h')
-rw-r--r-- | chrome/common/chrome_switches.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chrome/common/chrome_switches.h b/chrome/common/chrome_switches.h index f031399..9ed753c 100644 --- a/chrome/common/chrome_switches.h +++ b/chrome/common/chrome_switches.h @@ -140,6 +140,8 @@ extern const wchar_t kGearsPluginPathOverride[]; extern const wchar_t kEnableFastback[]; extern const wchar_t kEnableSync[]; +extern const wchar_t kSyncerThreadTimedStop[]; +extern const wchar_t kSyncerThreadPthreads[]; extern const wchar_t kSdchFilter[]; |