| 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 <stddef.h> |
| 8 #include <stdint.h> |
| 9 |
| 7 #include <set> | 10 #include <set> |
| 8 | 11 |
| 9 #include "base/json/json_reader.h" | 12 #include "base/json/json_reader.h" |
| 10 #include "base/logging.h" | 13 #include "base/logging.h" |
| 11 #include "base/macros.h" | 14 #include "base/macros.h" |
| 12 #include "components/nacl/common/nacl_types.h" | 15 #include "components/nacl/common/nacl_types.h" |
| 13 #include "components/nacl/renderer/nexe_load_manager.h" | 16 #include "components/nacl/renderer/nexe_load_manager.h" |
| 14 #include "url/gurl.h" | 17 #include "url/gurl.h" |
| 15 | 18 |
| 16 namespace nacl { | 19 namespace nacl { |
| (...skipping 682 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 699 kUrlKey + "'s value is not a string."; | 702 kUrlKey + "'s value is not a string."; |
| 700 return false; | 703 return false; |
| 701 } | 704 } |
| 702 pnacl_options->translate = PP_FALSE; | 705 pnacl_options->translate = PP_FALSE; |
| 703 } | 706 } |
| 704 | 707 |
| 705 return true; | 708 return true; |
| 706 } | 709 } |
| 707 | 710 |
| 708 } // namespace nacl | 711 } // namespace nacl |
| OLD | NEW |