| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef CONTENT_RENDERER_PEPPER_PPB_FLASH_MESSAGE_LOOP_IMPL_H_ | 5 #ifndef CONTENT_RENDERER_PEPPER_PPB_FLASH_MESSAGE_LOOP_IMPL_H_ |
| 6 #define CONTENT_RENDERER_PEPPER_PPB_FLASH_MESSAGE_LOOP_IMPL_H_ | 6 #define CONTENT_RENDERER_PEPPER_PPB_FLASH_MESSAGE_LOOP_IMPL_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
| 10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
| 11 #include "ppapi/shared_impl/resource.h" | 11 #include "ppapi/shared_impl/resource.h" |
| 12 #include "ppapi/thunk/ppb_flash_message_loop_api.h" | 12 #include "ppapi/thunk/ppb_flash_message_loop_api.h" |
| 13 | 13 |
| 14 namespace content { | 14 namespace content { |
| 15 | 15 |
| 16 class PPB_Flash_MessageLoop_Impl | 16 class PPB_Flash_MessageLoop_Impl |
| 17 : public ppapi::Resource, | 17 : public ppapi::Resource, |
| 18 public ppapi::thunk::PPB_Flash_MessageLoop_API { | 18 public ppapi::thunk::PPB_Flash_MessageLoop_API { |
| 19 public: | 19 public: |
| 20 static PP_Resource Create(PP_Instance instance); | 20 static PP_Resource Create(PP_Instance instance); |
| 21 | 21 |
| 22 // Resource. | 22 // Resource. |
| 23 virtual ppapi::thunk::PPB_Flash_MessageLoop_API* AsPPB_Flash_MessageLoop_API() | 23 ppapi::thunk::PPB_Flash_MessageLoop_API* AsPPB_Flash_MessageLoop_API() |
| 24 override; | 24 override; |
| 25 | 25 |
| 26 // PPB_Flash_MessageLoop_API implementation. | 26 // PPB_Flash_MessageLoop_API implementation. |
| 27 virtual int32_t Run() override; | 27 int32_t Run() override; |
| 28 virtual void Quit() override; | 28 void Quit() override; |
| 29 virtual void RunFromHostProxy(const RunFromHostProxyCallback& callback) | 29 void RunFromHostProxy(const RunFromHostProxyCallback& callback) override; |
| 30 override; | |
| 31 | 30 |
| 32 private: | 31 private: |
| 33 class State; | 32 class State; |
| 34 | 33 |
| 35 explicit PPB_Flash_MessageLoop_Impl(PP_Instance instance); | 34 explicit PPB_Flash_MessageLoop_Impl(PP_Instance instance); |
| 36 virtual ~PPB_Flash_MessageLoop_Impl(); | 35 ~PPB_Flash_MessageLoop_Impl() override; |
| 37 | 36 |
| 38 // If |callback| is valid, it will be called when the message loop is signaled | 37 // If |callback| is valid, it will be called when the message loop is signaled |
| 39 // to quit, and the result passed into it will be the same value as what this | 38 // to quit, and the result passed into it will be the same value as what this |
| 40 // method returns. | 39 // method returns. |
| 41 // Please note that |callback| happens before this method returns. | 40 // Please note that |callback| happens before this method returns. |
| 42 int32_t InternalRun(const RunFromHostProxyCallback& callback); | 41 int32_t InternalRun(const RunFromHostProxyCallback& callback); |
| 43 void InternalQuit(int32_t result); | 42 void InternalQuit(int32_t result); |
| 44 | 43 |
| 45 scoped_refptr<State> state_; | 44 scoped_refptr<State> state_; |
| 46 | 45 |
| 47 DISALLOW_COPY_AND_ASSIGN(PPB_Flash_MessageLoop_Impl); | 46 DISALLOW_COPY_AND_ASSIGN(PPB_Flash_MessageLoop_Impl); |
| 48 }; | 47 }; |
| 49 | 48 |
| 50 } // namespace content | 49 } // namespace content |
| 51 | 50 |
| 52 #endif // CONTENT_RENDERER_PEPPER_PPB_FLASH_MESSAGE_LOOP_IMPL_H_ | 51 #endif // CONTENT_RENDERER_PEPPER_PPB_FLASH_MESSAGE_LOOP_IMPL_H_ |
| OLD | NEW |