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

Unified Diff: chrome/browser/shell_integration_unittest.cc

Issue 14113053: chrome: Use base::MessageLoop. (Part 3) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 8 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/shell_integration_unittest.cc
diff --git a/chrome/browser/shell_integration_unittest.cc b/chrome/browser/shell_integration_unittest.cc
index 871511482876f2d602815e0bc6d7b7f31641152c..07202ce2e8a355acce711996d0e810a611582121 100644
--- a/chrome/browser/shell_integration_unittest.cc
+++ b/chrome/browser/shell_integration_unittest.cc
@@ -113,7 +113,7 @@ TEST(ShellIntegrationTest, GetExistingShortcutLocations) {
base::FilePath kTemplateFilepath(kTemplateFilename);
const char kNoDisplayDesktopFile[] = "[Desktop Entry]\nNoDisplay=true";
- MessageLoop message_loop;
+ base::MessageLoop message_loop;
content::TestBrowserThread file_thread(BrowserThread::FILE, &message_loop);
// No existing shortcuts.
@@ -227,7 +227,7 @@ TEST(ShellIntegrationTest, GetExistingShortcutContents) {
const char kTestData1[] = "a magical testing string";
const char kTestData2[] = "a different testing string";
- MessageLoop message_loop;
+ base::MessageLoop message_loop;
content::TestBrowserThread file_thread(BrowserThread::FILE, &message_loop);
// Test that it searches $XDG_DATA_HOME/applications.
@@ -332,7 +332,7 @@ TEST(ShellIntegrationTest, GetDesktopShortcutTemplate) {
const char kTestData[] = "a magical testing string";
- MessageLoop message_loop;
+ base::MessageLoop message_loop;
content::TestBrowserThread file_thread(BrowserThread::FILE, &message_loop);
// Just do a simple test. The details are covered by

Powered by Google App Engine
This is Rietveld 408576698