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

Unified Diff: ppapi/c/dev/ppb_var_deprecated.h

Issue 6085009: Add an instance parameter to var objects, audio, and the 2D API. This replace... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 12 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
« no previous file with comments | « ppapi/c/dev/ppb_audio_config_dev.h ('k') | ppapi/c/ppb_graphics_2d.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ppapi/c/dev/ppb_var_deprecated.h
===================================================================
--- ppapi/c/dev/ppb_var_deprecated.h (revision 70488)
+++ ppapi/c/dev/ppb_var_deprecated.h (working copy)
@@ -6,13 +6,14 @@
#define PPAPI_C_PPB_VAR_DEPRECATED_H_
#include "ppapi/c/dev/deprecated_bool.h"
+#include "ppapi/c/pp_instance.h"
#include "ppapi/c/pp_module.h"
#include "ppapi/c/pp_stdint.h"
#include "ppapi/c/pp_var.h"
struct PPP_Class_Deprecated;
-#define PPB_VAR_DEPRECATED_INTERFACE "PPB_Var(Deprecated);0.2"
+#define PPB_VAR_DEPRECATED_INTERFACE "PPB_Var(Deprecated);0.3"
/**
* @file
@@ -231,9 +232,16 @@
* return CreateObject(&point_class, new Point(x, y));
* }</pre>
*/
- struct PP_Var (*CreateObject)(PP_Module module,
+ struct PP_Var (*CreateObject)(PP_Instance instance,
const struct PPP_Class_Deprecated* object_class,
void* object_data);
+
+ // Like CreateObject but takes a module. This will be deleted when all callers
+ // can be changed to use the PP_Instance CreateObject one.
+ struct PP_Var (*CreateObjectWithModuleDeprecated)(
+ PP_Module module,
+ const struct PPP_Class_Deprecated* object_class,
+ void* object_data);
};
/**
« no previous file with comments | « ppapi/c/dev/ppb_audio_config_dev.h ('k') | ppapi/c/ppb_graphics_2d.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698