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

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

Issue 6282007: First pass at making the proxy handle multiple renderers. This associates the... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 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/c/dev/ppb_testing_dev.h
===================================================================
--- ppapi/c/dev/ppb_testing_dev.h (revision 71670)
+++ ppapi/c/dev/ppb_testing_dev.h (working copy)
@@ -6,7 +6,7 @@
#define PPAPI_C_DEV_PPB_TESTING_DEV_H_
#include "ppapi/c/pp_bool.h"
-#include "ppapi/c/pp_module.h"
+#include "ppapi/c/pp_instance.h"
#include "ppapi/c/pp_resource.h"
#include "ppapi/c/pp_stdint.h"
@@ -64,8 +64,9 @@
void (*QuitMessageLoop)();
// Returns the number of live objects (resources + strings + objects)
- // associated with this plugin module. Used for detecting leaks.
- uint32_t (*GetLiveObjectCount)(PP_Module module);
+ // associated with this plugin instance. Used for detecting leaks. Returns
+ // (uint32_t)-1 on failure.
+ uint32_t (*GetLiveObjectsForInstance)(PP_Instance instance);
};
#endif /* PPAPI_C_DEV_PPB_TESTING_DEV_H_ */

Powered by Google App Engine
This is Rietveld 408576698