summaryrefslogtreecommitdiffstats
path: root/chrome/browser/sync/profile_sync_service_unittest.cc
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-08 02:32:26 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-08 02:32:26 +0000
commitae1d902caca12926986d20c7ce9f47774b288489 (patch)
tree703b820b2695c65272505867f2bf3800799d96d4 /chrome/browser/sync/profile_sync_service_unittest.cc
parentbffca08469f6dc420209693c30d4fb45a0fe0268 (diff)
downloadchromium_src-ae1d902caca12926986d20c7ce9f47774b288489.zip
chromium_src-ae1d902caca12926986d20c7ce9f47774b288489.tar.gz
chromium_src-ae1d902caca12926986d20c7ce9f47774b288489.tar.bz2
Rename ChromeThread to BrowserThread Part5:
- Rename entries under sync. BUG=56926 TEST=trybots Review URL: http://codereview.chromium.org/3538015 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61907 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sync/profile_sync_service_unittest.cc')
-rw-r--r--chrome/browser/sync/profile_sync_service_unittest.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/sync/profile_sync_service_unittest.cc b/chrome/browser/sync/profile_sync_service_unittest.cc
index c985e97..e012f40 100644
--- a/chrome/browser/sync/profile_sync_service_unittest.cc
+++ b/chrome/browser/sync/profile_sync_service_unittest.cc
@@ -217,8 +217,8 @@ class ProfileSyncServiceTest : public testing::Test {
enum LoadOption { LOAD_FROM_STORAGE, DELETE_EXISTING_STORAGE };
enum SaveOption { SAVE_TO_STORAGE, DONT_SAVE_TO_STORAGE };
ProfileSyncServiceTest()
- : ui_thread_(ChromeThread::UI, &message_loop_),
- file_thread_(ChromeThread::FILE, &message_loop_),
+ : ui_thread_(BrowserThread::UI, &message_loop_),
+ file_thread_(BrowserThread::FILE, &message_loop_),
model_(NULL),
model_associator_(NULL),
change_processor_(NULL) {
@@ -443,8 +443,8 @@ class ProfileSyncServiceTest : public testing::Test {
// avoid leaking the ProfileSyncService (the PostTask will retain the callee
// and caller until the task is run).
MessageLoop message_loop_;
- ChromeThread ui_thread_;
- ChromeThread file_thread_;
+ BrowserThread ui_thread_;
+ BrowserThread file_thread_;
scoped_ptr<TestProfileSyncService> service_;
scoped_ptr<TestingProfile> profile_;