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

Unified Diff: services/navigation/content_client/browser_main_parts.cc

Issue 2211473003: Remove calls to deprecated MessageLoop methods on Windows and Linux. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 4 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
« no previous file with comments | « remoting/test/test_chromoting_client_unittest.cc ('k') | ui/app_list/demo/app_list_demo_views.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/navigation/content_client/browser_main_parts.cc
diff --git a/services/navigation/content_client/browser_main_parts.cc b/services/navigation/content_client/browser_main_parts.cc
index a704380537cd717ce668e2a56ac388554ffb6431..ef91281118f3829e0891c4ca36110cb2e8484870 100644
--- a/services/navigation/content_client/browser_main_parts.cc
+++ b/services/navigation/content_client/browser_main_parts.cc
@@ -4,7 +4,7 @@
#include "services/navigation/content_client/browser_main_parts.h"
-#include "base/message_loop/message_loop.h"
+#include "base/run_loop.h"
#include "content/public/common/mojo_shell_connection.h"
#include "content/shell/browser/shell_browser_context.h"
#include "content/shell/browser/shell_net_log.h"
@@ -42,7 +42,7 @@ void BrowserMainParts::PostMainMessageLoopRun() {
}
bool BrowserMainParts::MainMessageLoopRun(int* result_code) {
- base::MessageLoop::current()->Run();
+ base::RunLoop().Run();
return true;
}
« no previous file with comments | « remoting/test/test_chromoting_client_unittest.cc ('k') | ui/app_list/demo/app_list_demo_views.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698