Index: chrome/browser/ui/webui/web_ui_test_handler.cc |
diff --git a/chrome/browser/ui/webui/web_ui_test_handler.cc b/chrome/browser/ui/webui/web_ui_test_handler.cc |
index 2f13e9f30dd2909753c156ba692a1b43dc8499aa..8624c89ede9d00656628121cb8986a7bec5026eb 100644 |
--- a/chrome/browser/ui/webui/web_ui_test_handler.cc |
+++ b/chrome/browser/ui/webui/web_ui_test_handler.cc |
@@ -61,7 +61,7 @@ void WebUITestHandler::HandleTestResult(const ListValue* test_result) { |
// Quit the message loop if |is_waiting_| so waiting process can get result or |
// error. To ensure this gets done, do this before ASSERT* calls. |
if (is_waiting_) |
- MessageLoopForUI::current()->Quit(); |
+ base::MessageLoopForUI::current()->Quit(); |
SCOPED_TRACE("WebUITestHandler::HandleTestResult"); |
@@ -81,7 +81,7 @@ void WebUITestHandler::JavaScriptComplete(const base::Value* result) { |
// Quit the message loop if |is_waiting_| so waiting process can get result or |
// error. To ensure this gets done, do this before ASSERT* calls. |
if (is_waiting_) |
- MessageLoopForUI::current()->Quit(); |
+ base::MessageLoopForUI::current()->Quit(); |
SCOPED_TRACE("WebUITestHandler::JavaScriptComplete"); |