diff options
author | zork@chromium.org <zork@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-27 22:49:23 +0000 |
---|---|---|
committer | zork@chromium.org <zork@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-10-27 22:49:23 +0000 |
commit | 26413f102e91456639284b14a82a23850591527e (patch) | |
tree | 02dcac1d76bd27709b18a98188e01235f05fe872 /chrome/test/testing_profile.cc | |
parent | 2884f8e77c8df5d80414c70b8f775ae090eb7900 (diff) | |
download | chromium_src-26413f102e91456639284b14a82a23850591527e.zip chromium_src-26413f102e91456639284b14a82a23850591527e.tar.gz chromium_src-26413f102e91456639284b14a82a23850591527e.tar.bz2 |
Remove the browser_sync flag.
BUG=none
TEST=none
Review URL: http://codereview.chromium.org/337034
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@30272 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/test/testing_profile.cc')
-rw-r--r-- | chrome/test/testing_profile.cc | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/chrome/test/testing_profile.cc b/chrome/test/testing_profile.cc index 460b3c5..e787a6b 100644 --- a/chrome/test/testing_profile.cc +++ b/chrome/test/testing_profile.cc @@ -202,17 +202,12 @@ void TestingProfile::BlockUntilHistoryProcessesPendingRequests() { } void TestingProfile::CreateProfileSyncService() { -#if defined(BROWSER_SYNC) if (!profile_sync_service_.get()) { profile_sync_service_.reset(new ProfileSyncService(this)); profile_sync_service_->Initialize(); } -#endif } ProfileSyncService* TestingProfile::GetProfileSyncService() { -#if defined(BROWSER_SYNC) return profile_sync_service_.get(); -#endif - return NULL; } |