OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_BROWSER_EXTENSIONS_CRX_INSTALLER_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_CRX_INSTALLER_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_CRX_INSTALLER_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_CRX_INSTALLER_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/compiler_specific.h" | 11 #include "base/compiler_specific.h" |
12 #include "base/files/file_path.h" | 12 #include "base/files/file_path.h" |
13 #include "base/memory/ref_counted.h" | 13 #include "base/memory/ref_counted.h" |
14 #include "base/memory/weak_ptr.h" | 14 #include "base/memory/weak_ptr.h" |
15 #include "base/version.h" | 15 #include "base/version.h" |
16 #include "chrome/browser/extensions/blacklist.h" | |
asargent_no_longer_on_chrome
2015/01/21 21:41:55
Removing this include is unrelated to the rest of
| |
17 #include "chrome/browser/extensions/extension_install_checker.h" | 16 #include "chrome/browser/extensions/extension_install_checker.h" |
18 #include "chrome/browser/extensions/extension_install_prompt.h" | 17 #include "chrome/browser/extensions/extension_install_prompt.h" |
19 #include "chrome/browser/extensions/extension_service.h" | 18 #include "chrome/browser/extensions/extension_service.h" |
20 #include "chrome/browser/extensions/sandboxed_unpacker.h" | |
21 #include "chrome/browser/extensions/webstore_installer.h" | 19 #include "chrome/browser/extensions/webstore_installer.h" |
22 #include "chrome/common/extensions/extension_constants.h" | 20 #include "chrome/common/extensions/extension_constants.h" |
23 #include "extensions/browser/install_flag.h" | 21 #include "extensions/browser/install_flag.h" |
22 #include "extensions/browser/sandboxed_unpacker.h" | |
24 #include "extensions/common/extension.h" | 23 #include "extensions/common/extension.h" |
25 #include "extensions/common/manifest.h" | 24 #include "extensions/common/manifest.h" |
26 #include "sync/api/string_ordinal.h" | 25 #include "sync/api/string_ordinal.h" |
27 | 26 |
28 class ExtensionService; | 27 class ExtensionService; |
29 class ExtensionServiceTest; | 28 class ExtensionServiceTest; |
30 class SkBitmap; | 29 class SkBitmap; |
31 struct WebApplicationInfo; | 30 struct WebApplicationInfo; |
32 | 31 |
33 namespace base { | 32 namespace base { |
(...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
420 | 419 |
421 // Performs requirements, policy and blacklist checks on the extension. | 420 // Performs requirements, policy and blacklist checks on the extension. |
422 ExtensionInstallChecker install_checker_; | 421 ExtensionInstallChecker install_checker_; |
423 | 422 |
424 DISALLOW_COPY_AND_ASSIGN(CrxInstaller); | 423 DISALLOW_COPY_AND_ASSIGN(CrxInstaller); |
425 }; | 424 }; |
426 | 425 |
427 } // namespace extensions | 426 } // namespace extensions |
428 | 427 |
429 #endif // CHROME_BROWSER_EXTENSIONS_CRX_INSTALLER_H_ | 428 #endif // CHROME_BROWSER_EXTENSIONS_CRX_INSTALLER_H_ |
OLD | NEW |