OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "components/nacl/renderer/json_manifest.h" | 5 #include "components/nacl/renderer/json_manifest.h" |
6 | 6 |
7 #include <set> | 7 #include <set> |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/macros.h" | 10 #include "base/macros.h" |
(...skipping 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
435 error_info->string = | 435 error_info->string = |
436 "could not resolve url '" + nexe_url + | 436 "could not resolve url '" + nexe_url + |
437 "' relative to manifest base url '" + manifest_base_url_.c_str() + | 437 "' relative to manifest base url '" + manifest_base_url_.c_str() + |
438 "'."; | 438 "'."; |
439 return false; | 439 return false; |
440 } | 440 } |
441 *full_url = resolved_gurl.possibly_invalid_spec(); | 441 *full_url = resolved_gurl.possibly_invalid_spec(); |
442 return true; | 442 return true; |
443 } | 443 } |
444 | 444 |
| 445 void JsonManifest::GetFiles( |
| 446 std::vector<std::pair<std::string, std::string> >* out_files) const { |
| 447 const Json::Value& files = dictionary_[kFilesKey]; |
| 448 if (!files.isObject()) |
| 449 return; |
| 450 |
| 451 const std::vector<std::string>& keys = files.getMemberNames(); |
| 452 for (size_t i = 0; i < keys.size(); ++i) { |
| 453 std::string full_url; |
| 454 PP_PNaClOptions unused_pnacl_options; // pnacl does not support "files". |
| 455 // We skip invalid entries in "files". |
| 456 if (GetKeyUrl(files, keys[i], &full_url, &unused_pnacl_options)) |
| 457 out_files->push_back(std::make_pair(full_url, keys[i])); |
| 458 } |
| 459 } |
| 460 |
445 bool JsonManifest::ResolveKey(const std::string& key, | 461 bool JsonManifest::ResolveKey(const std::string& key, |
446 std::string* full_url, | 462 std::string* full_url, |
447 PP_PNaClOptions* pnacl_options) const { | 463 PP_PNaClOptions* pnacl_options) const { |
448 // key must be one of kProgramKey or kFileKey '/' file-section-key | 464 // key must be one of kProgramKey or kFileKey '/' file-section-key |
449 if (full_url == NULL || pnacl_options == NULL) | 465 if (full_url == NULL || pnacl_options == NULL) |
450 return false; | 466 return false; |
451 | 467 |
452 if (key == kProgramKey) | 468 if (key == kProgramKey) |
453 return GetKeyUrl(dictionary_, key, full_url, pnacl_options); | 469 return GetKeyUrl(dictionary_, key, full_url, pnacl_options); |
454 | 470 |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
645 } else { | 661 } else { |
646 // NaCl | 662 // NaCl |
647 *url = isa_spec[kUrlKey].asString(); | 663 *url = isa_spec[kUrlKey].asString(); |
648 pnacl_options->translate = PP_FALSE; | 664 pnacl_options->translate = PP_FALSE; |
649 } | 665 } |
650 | 666 |
651 return true; | 667 return true; |
652 } | 668 } |
653 | 669 |
654 } // namespace nacl | 670 } // namespace nacl |
OLD | NEW |