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

Unified Diff: chrome/browser/fast_shutdown_uitest.cc

Issue 8392042: Split BrowserThread into public API and private implementation, step 1. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 9 years, 2 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: chrome/browser/fast_shutdown_uitest.cc
diff --git a/chrome/browser/fast_shutdown_uitest.cc b/chrome/browser/fast_shutdown_uitest.cc
index a7f1c003eec03b23b2ce7c07f64c9635cc2e6ba5..0237fe4085aaca24199ff37e9f9b1f7f02b0eebc 100644
--- a/chrome/browser/fast_shutdown_uitest.cc
+++ b/chrome/browser/fast_shutdown_uitest.cc
@@ -13,7 +13,7 @@
#include "chrome/test/automation/tab_proxy.h"
#include "chrome/test/base/ui_test_utils.h"
#include "chrome/test/ui/ui_test.h"
-#include "content/browser/browser_thread.h"
+#include "content/test/test_browser_thread.h"
class FastShutdown : public UITest {
protected:
@@ -70,8 +70,8 @@ class FastShutdown : public UITest {
to_notify->PostTask(FROM_HERE, new MessageLoop::QuitTask());
}
- BrowserThread db_thread_;
- BrowserThread io_thread_;
+ content::TestBrowserThread db_thread_;
+ content::TestBrowserThread io_thread_;
scoped_refptr<base::ThreadTestHelper> thread_helper_;
FilePath user_data_dir_;

Powered by Google App Engine
This is Rietveld 408576698