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

Unified Diff: ppapi/native_client/src/trusted/plugin/pnacl_resources.h

Issue 231853003: Pepper: Remove Manifest::ResolveURL (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix nit Created 6 years, 8 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/native_client/src/trusted/plugin/pnacl_resources.h
diff --git a/ppapi/native_client/src/trusted/plugin/pnacl_resources.h b/ppapi/native_client/src/trusted/plugin/pnacl_resources.h
index 3363e17a397f494885ce63b62fb4b8500017f6a4..ca1893bd8d6472c20ea2fd9dd34f57daca8e8083 100644
--- a/ppapi/native_client/src/trusted/plugin/pnacl_resources.h
+++ b/ppapi/native_client/src/trusted/plugin/pnacl_resources.h
@@ -48,11 +48,9 @@ class PnaclUrls {
class PnaclResources {
public:
PnaclResources(Plugin* plugin,
- PnaclCoordinator* coordinator,
- const Manifest* manifest)
+ PnaclCoordinator* coordinator)
: plugin_(plugin),
- coordinator_(coordinator),
- manifest_(manifest) {
+ coordinator_(coordinator) {
}
virtual ~PnaclResources();
@@ -90,8 +88,6 @@ class PnaclResources {
Plugin* plugin_;
// The coordinator responsible for reporting errors, etc.
PnaclCoordinator* coordinator_;
- // The manifest for looking up resource URLs.
- const Manifest* manifest_;
// The descriptor wrappers for the downloaded URLs. Only valid
// once all_loaded_callback_ has been invoked.
std::map<nacl::string, nacl::DescWrapper*> resource_wrappers_;
« no previous file with comments | « ppapi/native_client/src/trusted/plugin/pnacl_coordinator.cc ('k') | ppapi/native_client/src/trusted/plugin/pnacl_resources.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698