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

Unified Diff: chrome/browser/extensions/extension_apitest.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/extensions/extension_apitest.cc
diff --git a/chrome/browser/extensions/extension_apitest.cc b/chrome/browser/extensions/extension_apitest.cc
index 8d072ae492f0080614da7990b3a17303dec0dfd2..cb65ccc8cb701ee103efe5e109ea99cf4a83322f 100644
--- a/chrome/browser/extensions/extension_apitest.cc
+++ b/chrome/browser/extensions/extension_apitest.cc
@@ -82,7 +82,7 @@ void ExtensionApiTest::ResultCatcher::Observe(
results_.push_back(true);
messages_.push_back(std::string());
if (waiting_)
- MessageLoopForUI::current()->Quit();
+ base::MessageLoopForUI::current()->Quit();
break;
case chrome::NOTIFICATION_EXTENSION_TEST_FAILED:
@@ -90,7 +90,7 @@ void ExtensionApiTest::ResultCatcher::Observe(
results_.push_back(false);
messages_.push_back(*(content::Details<std::string>(details).ptr()));
if (waiting_)
- MessageLoopForUI::current()->Quit();
+ base::MessageLoopForUI::current()->Quit();
break;
default:

Powered by Google App Engine
This is Rietveld 408576698