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; |
} |