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 |