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

Unified Diff: chrome/browser/user_style_sheet_watcher_unittest.cc

Issue 14113053: chrome: Use base::MessageLoop. (Part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase again Created 7 years, 7 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/user_style_sheet_watcher_unittest.cc
diff --git a/chrome/browser/user_style_sheet_watcher_unittest.cc b/chrome/browser/user_style_sheet_watcher_unittest.cc
index 004e27118cb60f3b5e0cbf9b9dbea6c7b8cbdabd..3f1e614fa615ff20dd12473d13eb45484080e162 100644
--- a/chrome/browser/user_style_sheet_watcher_unittest.cc
+++ b/chrome/browser/user_style_sheet_watcher_unittest.cc
@@ -28,9 +28,9 @@ TEST(UserStyleSheetWatcherTest, StyleLoad) {
ASSERT_TRUE(file_util::WriteFile(style_sheet_file,
css_file_contents.data(), css_file_contents.length()));
- MessageLoop loop(MessageLoop::TYPE_UI);
+ base::MessageLoop loop(base::MessageLoop::TYPE_UI);
base::Thread io_thread("UserStyleSheetWatcherTestIOThread");
- base::Thread::Options options(MessageLoop::TYPE_IO, 0);
+ base::Thread::Options options(base::MessageLoop::TYPE_IO, 0);
ASSERT_TRUE(io_thread.StartWithOptions(options));
content::TestBrowserThread browser_ui_thread(BrowserThread::UI, &loop);
content::TestBrowserThread browser_file_thread(BrowserThread::FILE,
« no previous file with comments | « chrome/browser/ui/webui/sync_setup_handler.cc ('k') | chrome/browser/value_store/value_store_frontend_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698