| OLD | NEW |
| 1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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 EXTENSIONS_COMMON_MANIFEST_HANDLER_H_ | 5 #ifndef EXTENSIONS_COMMON_MANIFEST_HANDLER_H_ |
| 6 #define EXTENSIONS_COMMON_MANIFEST_HANDLER_H_ | 6 #define EXTENSIONS_COMMON_MANIFEST_HANDLER_H_ |
| 7 | 7 |
| 8 #include <map> |
| 8 #include <set> | 9 #include <set> |
| 9 #include <string> | 10 #include <string> |
| 10 #include <vector> | 11 #include <vector> |
| 11 | 12 |
| 12 #include "base/lazy_instance.h" | 13 #include "base/lazy_instance.h" |
| 13 #include "base/memory/linked_ptr.h" | 14 #include "base/memory/linked_ptr.h" |
| 14 #include "base/strings/string16.h" | 15 #include "base/strings/string16.h" |
| 15 #include "extensions/common/manifest.h" | 16 #include "extensions/common/manifest.h" |
| 16 | 17 |
| 17 namespace extensions { | 18 namespace extensions { |
| (...skipping 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 164 // The priority for each manifest handler. Handlers with lower priority | 165 // The priority for each manifest handler. Handlers with lower priority |
| 165 // values are evaluated first. | 166 // values are evaluated first. |
| 166 ManifestHandlerPriorityMap priority_map_; | 167 ManifestHandlerPriorityMap priority_map_; |
| 167 | 168 |
| 168 bool is_finalized_; | 169 bool is_finalized_; |
| 169 }; | 170 }; |
| 170 | 171 |
| 171 } // namespace extensions | 172 } // namespace extensions |
| 172 | 173 |
| 173 #endif // EXTENSIONS_COMMON_MANIFEST_HANDLER_H_ | 174 #endif // EXTENSIONS_COMMON_MANIFEST_HANDLER_H_ |
| OLD | NEW |