Chromium Code Reviews

Unified Diff: ppapi/proxy/ppb_flash_proxy.h

Issue 8989006: Update PPAPI IDL generator to define versioned structs, and unversioned typedef. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Update native_client_sdk/.../hello_world_c example for definition changes. Created 9 years ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: ppapi/proxy/ppb_flash_proxy.h
diff --git a/ppapi/proxy/ppb_flash_proxy.h b/ppapi/proxy/ppb_flash_proxy.h
index 1939b2227e621498f856795e808749f2977cf50f..2b2b390a4430158b71ee201e4ca9dab1724830e6 100644
--- a/ppapi/proxy/ppb_flash_proxy.h
+++ b/ppapi/proxy/ppb_flash_proxy.h
@@ -13,12 +13,10 @@
#include "ppapi/c/pp_instance.h"
#include "ppapi/c/pp_module.h"
#include "ppapi/c/pp_time.h"
+#include "ppapi/c/private/ppb_flash.h"
#include "ppapi/proxy/interface_proxy.h"
#include "ppapi/shared_impl/host_resource.h"
-struct PPB_Flash;
-struct PPB_Flash_11;
-
namespace ppapi {
struct PPB_URLRequestInfo_Data;
@@ -35,7 +33,7 @@ class PPB_Flash_Proxy : public InterfaceProxy {
// Returns the corresponding version of the Flash interface pointer.
static const PPB_Flash_11* GetInterface11();
- static const PPB_Flash* GetInterface12();
+ static const PPB_Flash_12_0* GetInterface12_0();
// InterfaceProxy implementation.
virtual bool OnMessageReceived(const IPC::Message& msg);

Powered by Google App Engine