diff options
author | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-09 12:42:18 +0000 |
---|---|---|
committer | tfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-09 12:42:18 +0000 |
commit | ca4b5fa384e6ac932826d178f374d0d23e1296af (patch) | |
tree | 2bfcc573f6fb02e9b6f861eb55ac68e51cd07dd8 /chrome/browser/download/base_file_unittest.cc | |
parent | d8660e5d5b34ee34f1a0ca04a7a1758cf528ced1 (diff) | |
download | chromium_src-ca4b5fa384e6ac932826d178f374d0d23e1296af.zip chromium_src-ca4b5fa384e6ac932826d178f374d0d23e1296af.tar.gz chromium_src-ca4b5fa384e6ac932826d178f374d0d23e1296af.tar.bz2 |
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
Diffstat (limited to 'chrome/browser/download/base_file_unittest.cc')
-rw-r--r-- | chrome/browser/download/base_file_unittest.cc | 6 |
1 files changed, 3 insertions, 3 deletions
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 |