summaryrefslogtreecommitdiffstats
path: root/chrome/browser/search_engines/search_provider_install_data_unittest.cc
diff options
context:
space:
mode:
authortfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-07 05:00:29 +0000
committertfarina@chromium.org <tfarina@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-07 05:00:29 +0000
commit4d3b42a773a09463c9f57613206729aff2f84bfd (patch)
tree92e86c0e05c64ec50e672eaef8a30c4b8394f372 /chrome/browser/search_engines/search_provider_install_data_unittest.cc
parent34867b3fcd518cdb50435806c821e5be2604bc88 (diff)
downloadchromium_src-4d3b42a773a09463c9f57613206729aff2f84bfd.zip
chromium_src-4d3b42a773a09463c9f57613206729aff2f84bfd.tar.gz
chromium_src-4d3b42a773a09463c9f57613206729aff2f84bfd.tar.bz2
Rename ChromeThread to BrowserThread Part4:
- Rename entries under safe_browsing, search_engines, service and speech. BUG=56926 TEST=trybots Review URL: http://codereview.chromium.org/3552013 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@61763 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/search_engines/search_provider_install_data_unittest.cc')
-rw-r--r--chrome/browser/search_engines/search_provider_install_data_unittest.cc8
1 files changed, 4 insertions, 4 deletions
diff --git a/chrome/browser/search_engines/search_provider_install_data_unittest.cc b/chrome/browser/search_engines/search_provider_install_data_unittest.cc
index 50b4a5a..2cd8c5e 100644
--- a/chrome/browser/search_engines/search_provider_install_data_unittest.cc
+++ b/chrome/browser/search_engines/search_provider_install_data_unittest.cc
@@ -52,7 +52,7 @@ class TestGetInstallState :
}
// Runs the test. Returns true if all passed. False if any failed.
- bool RunTests(const ChromeThread& io_thread);
+ bool RunTests(const BrowserThread& io_thread);
private:
friend class base::RefCountedThreadSafe<TestGetInstallState>;
@@ -84,7 +84,7 @@ class TestGetInstallState :
DISALLOW_COPY_AND_ASSIGN(TestGetInstallState);
};
-bool TestGetInstallState::RunTests(const ChromeThread& io_thread) {
+bool TestGetInstallState::RunTests(const BrowserThread& io_thread) {
passed_ = true;
main_loop_ = MessageLoop::current();
@@ -167,7 +167,7 @@ class SearchProviderInstallDataTest : public testing::Test {
util_.GetWebDataService(),
NotificationType::RENDERER_PROCESS_TERMINATED,
Source<SearchProviderInstallDataTest>(this));
- io_thread_.reset(new ChromeThread(ChromeThread::IO));
+ io_thread_.reset(new BrowserThread(BrowserThread::IO));
io_thread_->Start();
}
@@ -216,7 +216,7 @@ class SearchProviderInstallDataTest : public testing::Test {
protected:
TemplateURLModelTestUtil util_;
- scoped_ptr<ChromeThread> io_thread_;
+ scoped_ptr<BrowserThread> io_thread_;
// Provides the search provider install state on the I/O thread. It must be
// deleted on the I/O thread, which is why it isn't a scoped_ptr.