| 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_EXTENSION_H_ | 5 #ifndef EXTENSIONS_COMMON_EXTENSION_H_ |
| 6 #define EXTENSIONS_COMMON_EXTENSION_H_ | 6 #define EXTENSIONS_COMMON_EXTENSION_H_ |
| 7 | 7 |
| 8 #include <map> | 8 #include <map> |
| 9 #include <memory> | 9 #include <memory> |
| 10 #include <set> | 10 #include <set> |
| 11 #include <string> | 11 #include <string> |
| 12 #include <vector> | 12 #include <vector> |
| 13 | 13 |
| 14 #include "base/files/file_path.h" | 14 #include "base/files/file_path.h" |
| 15 #include "base/macros.h" | 15 #include "base/macros.h" |
| 16 #include "base/memory/linked_ptr.h" | |
| 17 #include "base/memory/ref_counted.h" | 16 #include "base/memory/ref_counted.h" |
| 18 #include "base/threading/thread_checker.h" | 17 #include "base/threading/thread_checker.h" |
| 19 #include "extensions/common/extension_id.h" | 18 #include "extensions/common/extension_id.h" |
| 20 #include "extensions/common/extension_resource.h" | 19 #include "extensions/common/extension_resource.h" |
| 21 #include "extensions/common/install_warning.h" | 20 #include "extensions/common/install_warning.h" |
| 22 #include "extensions/common/manifest.h" | 21 #include "extensions/common/manifest.h" |
| 23 #include "extensions/common/url_pattern_set.h" | 22 #include "extensions/common/url_pattern_set.h" |
| 24 #include "url/gurl.h" | 23 #include "url/gurl.h" |
| 25 | 24 |
| 26 #if !defined(ENABLE_EXTENSIONS) | 25 #if !defined(ENABLE_EXTENSIONS) |
| (...skipping 531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 558 const PermissionSet& permissions; | 557 const PermissionSet& permissions; |
| 559 | 558 |
| 560 UpdatedExtensionPermissionsInfo(const Extension* extension, | 559 UpdatedExtensionPermissionsInfo(const Extension* extension, |
| 561 const PermissionSet& permissions, | 560 const PermissionSet& permissions, |
| 562 Reason reason); | 561 Reason reason); |
| 563 }; | 562 }; |
| 564 | 563 |
| 565 } // namespace extensions | 564 } // namespace extensions |
| 566 | 565 |
| 567 #endif // EXTENSIONS_COMMON_EXTENSION_H_ | 566 #endif // EXTENSIONS_COMMON_EXTENSION_H_ |
| OLD | NEW |