Index: ppapi/proxy/ppb_testing_proxy.cc |
diff --git a/ppapi/proxy/ppb_testing_proxy.cc b/ppapi/proxy/ppb_testing_proxy.cc |
index 6cdf59883077deca0c95a93a392bfc3035fd9b88..f28c500190c9c7e07dcb97865753aca2dcd3b81f 100644 |
--- a/ppapi/proxy/ppb_testing_proxy.cc |
+++ b/ppapi/proxy/ppb_testing_proxy.cc |
@@ -51,16 +51,17 @@ PP_Bool ReadImageData(PP_Resource graphics_2d, |
} |
void RunMessageLoop(PP_Instance instance) { |
- MessageLoop::ScopedNestableTaskAllower allow(MessageLoop::current()); |
+ base::MessageLoop::ScopedNestableTaskAllower allow( |
+ base::MessageLoop::current()); |
CHECK(PpapiGlobals::Get()->GetMainThreadMessageLoop()-> |
- BelongsToCurrentThread()); |
- MessageLoop::current()->Run(); |
+ BelongsToCurrentThread()); |
+ base::MessageLoop::current()->Run(); |
} |
void QuitMessageLoop(PP_Instance instance) { |
CHECK(PpapiGlobals::Get()->GetMainThreadMessageLoop()-> |
BelongsToCurrentThread()); |
- MessageLoop::current()->QuitNow(); |
+ base::MessageLoop::current()->QuitNow(); |
} |
uint32_t GetLiveObjectsForInstance(PP_Instance instance_id) { |