diff options
author | tim@chromium.org <tim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-11 02:36:34 +0000 |
---|---|---|
committer | tim@chromium.org <tim@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-11 02:36:34 +0000 |
commit | 92ad2cd7566835836b0dc3b66c719e9bfe08e6af (patch) | |
tree | cff9514cf67a4b795847c7313d007a8c45308a55 /chrome/browser/profile.cc | |
parent | a80dac4df5c030169f05ea207bdae06f82e656c3 (diff) | |
download | chromium_src-92ad2cd7566835836b0dc3b66c719e9bfe08e6af.zip chromium_src-92ad2cd7566835836b0dc3b66c719e9bfe08e6af.tar.gz chromium_src-92ad2cd7566835836b0dc3b66c719e9bfe08e6af.tar.bz2 |
Build browser/sync files by default using a stubbed-out syncapi
implementation. The stub will be replaced once the rest of
sync/engine lands as we open source the sync engine code.
Review URL: http://codereview.chromium.org/165257
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23004 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/profile.cc')
-rw-r--r-- | chrome/browser/profile.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/browser/profile.cc b/chrome/browser/profile.cc index f468bfa..6304c2b 100644 --- a/chrome/browser/profile.cc +++ b/chrome/browser/profile.cc @@ -518,7 +518,7 @@ ProfileImpl::ProfileImpl(const FilePath& path) prefs->AddPrefObserver(prefs::kEnableAutoSpellCorrect, this); #ifdef CHROME_PERSONALIZATION - if (!CommandLine::ForCurrentProcess()->HasSwitch(switches::kDisableP13n)) + if (CommandLine::ForCurrentProcess()->HasSwitch(switches::kEnableSync)) personalization_.reset(Personalization::CreateProfilePersonalization(this)); #endif |