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

Unified Diff: ppapi/proxy/image_data.cc

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/image_data.cc
===================================================================
--- ppapi/proxy/image_data.cc (revision 72517)
+++ ppapi/proxy/image_data.cc (working copy)
@@ -17,9 +17,10 @@
namespace proxy {
ImageData::ImageData(PP_Instance instance,
+ SerializedResource resource,
const PP_ImageDataDesc& desc,
ImageHandle handle)
- : PluginResource(instance),
+ : PluginResource(instance, resource),
desc_(desc),
handle_(handle),
mapped_data_(NULL) {

Powered by Google App Engine
This is Rietveld 408576698