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 #ifndef CONTENT_RENDERER_MANIFEST_MANIFEST_PARSER_H_ | 5 #ifndef CONTENT_RENDERER_MANIFEST_MANIFEST_PARSER_H_ |
6 #define CONTENT_RENDERER_MANIFEST_MANIFEST_PARSER_H_ | 6 #define CONTENT_RENDERER_MANIFEST_MANIFEST_PARSER_H_ |
7 | 7 |
8 #include <stdint.h> | 8 #include <stdint.h> |
9 | 9 |
| 10 #include "base/macros.h" |
10 #include "base/strings/nullable_string16.h" | 11 #include "base/strings/nullable_string16.h" |
11 #include "base/strings/string_piece.h" | 12 #include "base/strings/string_piece.h" |
12 #include "content/common/content_export.h" | 13 #include "content/common/content_export.h" |
13 #include "content/public/common/manifest.h" | 14 #include "content/public/common/manifest.h" |
14 | 15 |
15 class GURL; | 16 class GURL; |
16 | 17 |
17 namespace base { | 18 namespace base { |
18 class DictionaryValue; | 19 class DictionaryValue; |
19 } | 20 } |
(...skipping 169 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 bool failed_; | 190 bool failed_; |
190 Manifest manifest_; | 191 Manifest manifest_; |
191 std::vector<std::string> errors_; | 192 std::vector<std::string> errors_; |
192 | 193 |
193 DISALLOW_COPY_AND_ASSIGN(ManifestParser); | 194 DISALLOW_COPY_AND_ASSIGN(ManifestParser); |
194 }; | 195 }; |
195 | 196 |
196 } // namespace content | 197 } // namespace content |
197 | 198 |
198 #endif // CONTENT_RENDERER_MANIFEST_MANIFEST_PARSER_H_ | 199 #endif // CONTENT_RENDERER_MANIFEST_MANIFEST_PARSER_H_ |
OLD | NEW |