Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(245)

Unified Diff: content/public/test/test_browser_thread_bundle.cc

Issue 18414007: Remove unused WEBKIT_DEPRECATED thread (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: content/public/test/test_browser_thread_bundle.cc
diff --git a/content/public/test/test_browser_thread_bundle.cc b/content/public/test/test_browser_thread_bundle.cc
index 820b5945de6401c7f56a1f7f21e91e01161c8bc2..b2a5f8c10e9a2bb4ca94145bab7991efea6d02fd 100644
--- a/content/public/test/test_browser_thread_bundle.cc
+++ b/content/public/test/test_browser_thread_bundle.cc
@@ -34,8 +34,6 @@ TestBrowserThreadBundle::~TestBrowserThreadBundle() {
base::RunLoop().RunUntilIdle();
file_thread_.reset();
base::RunLoop().RunUntilIdle();
- webkit_deprecated_thread_.reset();
- base::RunLoop().RunUntilIdle();
db_thread_.reset();
base::RunLoop().RunUntilIdle();
ui_thread_.reset();
@@ -60,16 +58,6 @@ void TestBrowserThreadBundle::Init(int options) {
message_loop_.get()));
}
- if (options & REAL_WEBKIT_DEPRECATED_THREAD) {
- webkit_deprecated_thread_.reset(
- new TestBrowserThread(BrowserThread::WEBKIT_DEPRECATED));
- webkit_deprecated_thread_->Start();
- } else {
- webkit_deprecated_thread_.reset(
- new TestBrowserThread(BrowserThread::WEBKIT_DEPRECATED,
- message_loop_.get()));
- }
-
if (options & REAL_FILE_THREAD) {
file_thread_.reset(new TestBrowserThread(BrowserThread::FILE));
file_thread_->Start();

Powered by Google App Engine
This is Rietveld 408576698