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

Unified Diff: webkit/glue/plugins/pepper_resource_tracker.h

Issue 2859023: Boilerplate implementation of the Pepper URL Loader API.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 6 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 | « webkit/glue/plugins/pepper_resource.h ('k') | webkit/glue/plugins/pepper_resource_tracker.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/plugins/pepper_resource_tracker.h
===================================================================
--- webkit/glue/plugins/pepper_resource_tracker.h (revision 50727)
+++ webkit/glue/plugins/pepper_resource_tracker.h (working copy)
@@ -20,6 +20,9 @@
class DeviceContext2D;
class ImageData;
class Resource;
+class URLLoader;
+class URLRequestInfo;
+class URLResponseInfo;
// This class maintains a global list of all live pepper resources. It allows
// us to check resource ID validity and to map them to a specific module.
@@ -47,6 +50,9 @@
// resource is invalid or is a different type.
scoped_refptr<DeviceContext2D> GetAsDeviceContext2D(PP_Resource res) const;
scoped_refptr<ImageData> GetAsImageData(PP_Resource res) const;
+ scoped_refptr<URLLoader> GetAsURLLoader(PP_Resource res) const;
+ scoped_refptr<URLRequestInfo> GetAsURLRequestInfo(PP_Resource res) const;
+ scoped_refptr<URLResponseInfo> GetAsURLResponseInfo(PP_Resource res) const;
scoped_refptr<Buffer> GetAsBuffer(PP_Resource res) const;
private:
« no previous file with comments | « webkit/glue/plugins/pepper_resource.h ('k') | webkit/glue/plugins/pepper_resource_tracker.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698