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

Unified Diff: ppapi/proxy/ppb_message_loop_proxy.h

Issue 9097006: First pass at implementing the MessageLoop interface. This includes a simple (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Review comments 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: ppapi/proxy/ppb_message_loop_proxy.h
diff --git a/ppapi/proxy/ppb_message_loop_proxy.h b/ppapi/proxy/ppb_message_loop_proxy.h
new file mode 100644
index 0000000000000000000000000000000000000000..aaf120a9be1071e63afa4186b76d65ec6e4991ea
--- /dev/null
+++ b/ppapi/proxy/ppb_message_loop_proxy.h
@@ -0,0 +1,30 @@
+// 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 PPAPI_PROXY_PPB_MESSAGE_LOOP_PROXY_H_
+#define PPAPI_PROXY_PPB_MESSAGE_LOOP_PROXY_H_
+
+#include "base/basictypes.h"
+#include "ppapi/proxy/interface_proxy.h"
+
+struct PPB_MessageLoop_Dev_0_1;
+
+namespace ppapi {
+namespace proxy {
+
+class PPB_MessageLoop_Proxy : public InterfaceProxy {
+ public:
+ PPB_MessageLoop_Proxy(Dispatcher* dispatcher);
+ virtual ~PPB_MessageLoop_Proxy();
+
+ static const PPB_MessageLoop_Dev_0_1* GetInterface();
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(PPB_MessageLoop_Proxy);
+};
+
+} // namespace proxy
+} // namespace ppapi
+
+#endif // PPAPI_PROXY_PPB_MESSAGE_LOOP_PROXY_H_

Powered by Google App Engine
This is Rietveld 408576698