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

Unified Diff: chrome/test/pyautolib/pyautolib.cc

Issue 16092013: Use base::MessageLoop in more files. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase again, sigh 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/test/pyautolib/pyautolib.cc
diff --git a/chrome/test/pyautolib/pyautolib.cc b/chrome/test/pyautolib/pyautolib.cc
index 4899ff1eac499acba37ceae8dcaf6d80875bc6d4..c07cf891d36086bdc0174025e43119d0b55f6cac 100644
--- a/chrome/test/pyautolib/pyautolib.cc
+++ b/chrome/test/pyautolib/pyautolib.cc
@@ -55,10 +55,10 @@ PyUITestBase::~PyUITestBase() {
}
// static, refer .h for why it needs to be static
-MessageLoop* PyUITestBase::message_loop_ = NULL;
+base::MessageLoop* PyUITestBase::message_loop_ = NULL;
// static
-MessageLoop* PyUITestBase::GetSharedMessageLoop(
+base::MessageLoop* PyUITestBase::GetSharedMessageLoop(
base::MessageLoop::Type msg_loop_type) {
if (!message_loop_) // Create a shared instance of MessageLoop
message_loop_ = new base::MessageLoop(msg_loop_type);
« no previous file with comments | « chrome/browser/ui/webui/theme_source.cc ('k') | components/autofill/browser/personal_data_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698