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

Unified Diff: webkit/plugins/ppapi/ppb_flash_message_loop_impl.h

Issue 9188045: Introduce PPB_Flash_MessageLoop interface for Pepper Flash. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync Created 8 years, 11 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
Index: webkit/plugins/ppapi/ppb_flash_message_loop_impl.h
diff --git a/webkit/plugins/ppapi/ppb_flash_message_loop_impl.h b/webkit/plugins/ppapi/ppb_flash_message_loop_impl.h
new file mode 100644
index 0000000000000000000000000000000000000000..a84ee08d8c3599546c72aeca43a2f2fe3d5052ea
--- /dev/null
+++ b/webkit/plugins/ppapi/ppb_flash_message_loop_impl.h
@@ -0,0 +1,50 @@
+// Copyright (c) 2012 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef WEBKIT_PLUGINS_PPAPI_PPB_FLASH_MESSAGE_LOOP_IMPL_H_
+#define WEBKIT_PLUGINS_PPAPI_PPB_FLASH_MESSAGE_LOOP_IMPL_H_
+
+#include "base/basictypes.h"
+#include "base/compiler_specific.h"
+#include "base/memory/ref_counted.h"
+#include "ppapi/shared_impl/resource.h"
+#include "ppapi/thunk/ppb_flash_message_loop_api.h"
+
+namespace webkit {
+namespace ppapi {
+
+class PPB_Flash_MessageLoop_Impl
+ : public ::ppapi::Resource,
+ public ::ppapi::thunk::PPB_Flash_MessageLoop_API {
+ public:
+ virtual ~PPB_Flash_MessageLoop_Impl();
+
+ static PP_Resource Create(PP_Instance instance);
+
+ // Resource.
+ virtual ::ppapi::thunk::PPB_Flash_MessageLoop_API*
+ AsPPB_Flash_MessageLoop_API() OVERRIDE;
+
+ // PPB_Flash_MessageLoop_API implementation.
+ virtual int32_t Run() OVERRIDE;
+ virtual void Quit() OVERRIDE;
+ virtual void RunFromHostProxy(PP_CompletionCallback callback) OVERRIDE;
viettrungluu 2012/01/17 21:26:06 Would I be wrong in saying that this callback isn'
yzshen1 2012/01/18 07:43:35 :) It is not strictly a PPAPI completion callback,
+
+ private:
+ class State;
+
+ explicit PPB_Flash_MessageLoop_Impl(PP_Instance instance);
+
+ int32_t InternalRun(PP_CompletionCallback callback);
+ void InternalQuit(int32_t result);
+
+ scoped_refptr<State> state_;
+
+ DISALLOW_COPY_AND_ASSIGN(PPB_Flash_MessageLoop_Impl);
+};
+
+} // namespace ppapi
+} // namespace webkit
+
+#endif // WEBKIT_PLUGINS_PPAPI_PPB_FLASH_MESSAGE_LOOP_IMPL_H_

Powered by Google App Engine
This is Rietveld 408576698