From ca4b5fa384e6ac932826d178f374d0d23e1296af Mon Sep 17 00:00:00 2001 From: "tfarina@chromium.org" Date: Sat, 9 Oct 2010 12:42:18 +0000 Subject: Rename ChromeThread to BrowserThread Part10: - Rename entries under download and extensions. BUG=56926 TEST=trybots Review URL: http://codereview.chromium.org/3685001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62081 0039d316-1c4b-4281-b951-d872f2087c98 --- chrome/browser/download/base_file_unittest.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'chrome/browser/download/base_file_unittest.cc') diff --git a/chrome/browser/download/base_file_unittest.cc b/chrome/browser/download/base_file_unittest.cc index 3c135aa..8138da8 100644 --- a/chrome/browser/download/base_file_unittest.cc +++ b/chrome/browser/download/base_file_unittest.cc @@ -18,7 +18,7 @@ const char kTestData3[] = "Final line."; class BaseFileTest : public testing::Test { public: - BaseFileTest() : file_thread_(ChromeThread::FILE, &message_loop_) { + BaseFileTest() : file_thread_(BrowserThread::FILE, &message_loop_) { } virtual void SetUp() { @@ -39,7 +39,7 @@ class BaseFileTest : public testing::Test { EXPECT_EQ(expected_data_, disk_data); } - // Make sure the mock ChromeThread outlives the BaseFile to satisfy + // Make sure the mock BrowserThread outlives the BaseFile to satisfy // thread checks inside it. base_file_.reset(); } @@ -67,7 +67,7 @@ class BaseFileTest : public testing::Test { // Mock file thread to satisfy debug checks in BaseFile. MessageLoop message_loop_; - ChromeThread file_thread_; + BrowserThread file_thread_; }; // Test the most basic scenario: just create the object and do a sanity check -- cgit v1.1