| 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 CHROME_COMMON_EXTENSIONS_EXTENSION_H_ | 5 #ifndef CHROME_COMMON_EXTENSIONS_EXTENSION_H_ |
| 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_H_ | 6 #define CHROME_COMMON_EXTENSIONS_EXTENSION_H_ |
| 7 | 7 |
| 8 #include <algorithm> | 8 #include <algorithm> |
| 9 #include <iosfwd> | 9 #include <iosfwd> |
| 10 #include <map> | 10 #include <map> |
| 11 #include <set> | 11 #include <set> |
| 12 #include <string> | 12 #include <string> |
| 13 #include <utility> | 13 #include <utility> |
| 14 #include <vector> | 14 #include <vector> |
| 15 | 15 |
| 16 #include "base/containers/hash_tables.h" | 16 #include "base/containers/hash_tables.h" |
| 17 #include "base/files/file_path.h" | 17 #include "base/files/file_path.h" |
| 18 #include "base/memory/linked_ptr.h" | 18 #include "base/memory/linked_ptr.h" |
| 19 #include "base/memory/ref_counted.h" | 19 #include "base/memory/ref_counted.h" |
| 20 #include "base/memory/scoped_ptr.h" | 20 #include "base/memory/scoped_ptr.h" |
| 21 #include "base/synchronization/lock.h" | 21 #include "base/synchronization/lock.h" |
| 22 #include "base/threading/thread_checker.h" | 22 #include "base/threading/thread_checker.h" |
| 23 #include "chrome/common/extensions/extension_constants.h" | 23 #include "chrome/common/extensions/extension_constants.h" |
| 24 #include "chrome/common/extensions/manifest.h" | |
| 25 #include "chrome/common/extensions/permissions/api_permission.h" | 24 #include "chrome/common/extensions/permissions/api_permission.h" |
| 26 #include "extensions/common/extension_resource.h" | 25 #include "extensions/common/extension_resource.h" |
| 27 #include "extensions/common/install_warning.h" | 26 #include "extensions/common/install_warning.h" |
| 27 #include "extensions/common/manifest.h" |
| 28 #include "extensions/common/url_pattern.h" | 28 #include "extensions/common/url_pattern.h" |
| 29 #include "extensions/common/url_pattern_set.h" | 29 #include "extensions/common/url_pattern_set.h" |
| 30 #include "ui/base/accelerators/accelerator.h" | 30 #include "ui/base/accelerators/accelerator.h" |
| 31 #include "ui/gfx/size.h" | 31 #include "ui/gfx/size.h" |
| 32 #include "url/gurl.h" | 32 #include "url/gurl.h" |
| 33 | 33 |
| 34 class ExtensionAction; | 34 class ExtensionAction; |
| 35 class SkBitmap; | 35 class SkBitmap; |
| 36 | 36 |
| 37 namespace base { | 37 namespace base { |
| (...skipping 475 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 513 | 513 |
| 514 UpdatedExtensionPermissionsInfo( | 514 UpdatedExtensionPermissionsInfo( |
| 515 const Extension* extension, | 515 const Extension* extension, |
| 516 const PermissionSet* permissions, | 516 const PermissionSet* permissions, |
| 517 Reason reason); | 517 Reason reason); |
| 518 }; | 518 }; |
| 519 | 519 |
| 520 } // namespace extensions | 520 } // namespace extensions |
| 521 | 521 |
| 522 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_H_ | 522 #endif // CHROME_COMMON_EXTENSIONS_EXTENSION_H_ |
| OLD | NEW |