| Index: components/nacl/renderer/json_manifest.h
|
| diff --git a/components/nacl/renderer/json_manifest.h b/components/nacl/renderer/json_manifest.h
|
| index dbe54d5a61abdc9dfa7174fdbaeb1d912e7e8aa1..4117966ba6606db917b8070e5f0c4c2e8b68be93 100644
|
| --- a/components/nacl/renderer/json_manifest.h
|
| +++ b/components/nacl/renderer/json_manifest.h
|
| @@ -7,6 +7,7 @@
|
|
|
| #include <set>
|
| #include <string>
|
| +#include <utility>
|
|
|
| #include "components/nacl/renderer/ppb_nacl_private.h"
|
| #include "ppapi/c/pp_array_output.h"
|
| @@ -39,6 +40,11 @@ class JsonManifest {
|
| bool* uses_nonsfi_mode,
|
| ErrorInfo* error_info) const;
|
|
|
| + // Gets all the keys and their URLs in the "files" section that are
|
| + // prefetchable.
|
| + void GetPrefetchableFiles(
|
| + std::vector<std::pair<std::string, std::string> >* 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
|
| // manifest's URL (via ResolveURL).
|
|
|