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

Unified Diff: chrome/browser/ui/cocoa/cocoa_profile_test.mm

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/ui/cocoa/cocoa_profile_test.mm
diff --git a/chrome/browser/ui/cocoa/cocoa_profile_test.mm b/chrome/browser/ui/cocoa/cocoa_profile_test.mm
index d816f40bb4759d9bed2c08ce22cd4b1abb27ca79..46f85d597046e8ea9174663438d9bad9869b4990 100644
--- a/chrome/browser/ui/cocoa/cocoa_profile_test.mm
+++ b/chrome/browser/ui/cocoa/cocoa_profile_test.mm
@@ -6,13 +6,16 @@
#include "chrome/browser/browser_process.h"
#include "chrome/test/base/testing_browser_process.h"
+#include "content/test/test_browser_thread.h"
CocoaProfileTest::CocoaProfileTest()
: ui_thread_(BrowserThread::UI, &message_loop_),
profile_manager_(static_cast<TestingBrowserProcess*>(g_browser_process)),
profile_(NULL),
- file_thread_(new BrowserThread(BrowserThread::FILE, &message_loop_)),
- io_thread_(new BrowserThread(BrowserThread::IO, &message_loop_)) {
+ file_thread_(new content::TestBrowserThread(BrowserThread::FILE,
+ &message_loop_)),
+ io_thread_(new content::TestBrowserThread(BrowserThread::IO,
+ &message_loop_)) {
}
CocoaProfileTest::~CocoaProfileTest() {

Powered by Google App Engine
This is Rietveld 408576698