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

Unified Diff: components/nacl/renderer/json_manifest.h

Issue 1085583005: Refactor params of NaClProcessMsg_Start. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 5 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: components/nacl/renderer/json_manifest.h
diff --git a/components/nacl/renderer/json_manifest.h b/components/nacl/renderer/json_manifest.h
index 7e3c84113f53d8665a714e71d03ad677301d6706..8d75aefd222ba41ab6532c00fd4bdce4a7130a28 100644
--- a/components/nacl/renderer/json_manifest.h
+++ b/components/nacl/renderer/json_manifest.h
@@ -9,7 +9,6 @@
#include <string>
#include <utility>
-#include "base/strings/string_split.h"
#include "components/nacl/renderer/ppb_nacl_private.h"
#include "ppapi/c/pp_array_output.h"
#include "third_party/jsoncpp/source/include/json/value.h"
@@ -17,6 +16,7 @@
namespace nacl {
class JsonManifest;
class NexeLoadManager;
+struct NaClResourcePrefetchRequest;
class JsonManifest {
public:
@@ -43,7 +43,8 @@ class JsonManifest {
// Gets all the keys and their URLs in the "files" section that are
// prefetchable.
- void GetPrefetchableFiles(base::StringPairs* out_files) const;
+ void GetPrefetchableFiles(
+ std::vector<NaClResourcePrefetchRequest>* out_files) const;
// Resolves a key from the "files" section to a fully resolved URL,
// i.e., relative URL values are fully expanded relative to the

Powered by Google App Engine
This is Rietveld 408576698