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

Unified Diff: ppapi/nacl_irt/irt_ppapi.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 | « ppapi/nacl_irt/irt_pnacl_translator_link.cc ('k') | remoting/host/daemon_process_unittest.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/nacl_irt/irt_ppapi.cc
diff --git a/ppapi/nacl_irt/irt_ppapi.cc b/ppapi/nacl_irt/irt_ppapi.cc
index e2f2dc92b7c882bc3b8d2935ececc434fd0ba440..d7ed0690f4a401d76e123d08cd8172568408b8d3 100644
--- a/ppapi/nacl_irt/irt_ppapi.cc
+++ b/ppapi/nacl_irt/irt_ppapi.cc
@@ -10,6 +10,7 @@
#include <stdint.h>
+#include "base/run_loop.h"
#include "base/threading/thread.h"
#include "ipc/ipc_logging.h"
#include "ppapi/nacl_irt/irt_interfaces.h"
@@ -42,7 +43,7 @@ int irt_ppapi_start(const struct PP_StartFunctions* funcs) {
ppapi::GetRendererIPCChannelHandle());
plugin_globals.SetPluginProxyDelegate(&ppapi_dispatcher);
- loop.Run();
+ base::RunLoop().Run();
return 0;
}
« no previous file with comments | « ppapi/nacl_irt/irt_pnacl_translator_link.cc ('k') | remoting/host/daemon_process_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698