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

Unified Diff: ppapi/proxy/ppb_buffer_proxy.h

Issue 6334016: Refactor PPAPI proxy resource handling to maintain which host they came from,... (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/proxy/ppb_buffer_proxy.h
===================================================================
--- ppapi/proxy/ppb_buffer_proxy.h (revision 72517)
+++ ppapi/proxy/ppb_buffer_proxy.h (working copy)
@@ -13,6 +13,8 @@
namespace pp {
namespace proxy {
+class SerializedResource;
+
class PPB_Buffer_Proxy : public InterfaceProxy {
public:
PPB_Buffer_Proxy(Dispatcher* dispatcher, const void* target_interface);
@@ -31,7 +33,7 @@
// Message handlers.
void OnMsgCreate(PP_Instance instance,
uint32_t size,
- PP_Resource* result_resource,
+ SerializedResource* result_resource,
int* result_shm_handle);
};

Powered by Google App Engine
This is Rietveld 408576698