| 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 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| 11 #include "base/files/file_path.h" | 11 #include "base/files/file_path.h" |
| 12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
| 13 #include "base/memory/weak_ptr.h" | 13 #include "base/memory/weak_ptr.h" |
| 14 #include "base/version.h" | 14 #include "base/version.h" |
| 15 #include "chrome/browser/extensions/blacklist.h" | 15 #include "chrome/browser/extensions/blacklist.h" |
| 16 #include "chrome/browser/extensions/extension_install_prompt.h" | 16 #include "chrome/browser/extensions/extension_install_prompt.h" |
| 17 #include "chrome/browser/extensions/extension_installer.h" | 17 #include "chrome/browser/extensions/extension_installer.h" |
| 18 #include "chrome/browser/extensions/sandboxed_unpacker.h" | 18 #include "chrome/browser/extensions/sandboxed_unpacker.h" |
| 19 #include "chrome/browser/extensions/webstore_installer.h" | 19 #include "chrome/browser/extensions/webstore_installer.h" |
| 20 #include "chrome/common/extensions/extension.h" | 20 #include "chrome/common/extensions/extension.h" |
| 21 #include "chrome/common/extensions/manifest.h" | 21 #include "extensions/common/manifest.h" |
| 22 #include "sync/api/string_ordinal.h" | 22 #include "sync/api/string_ordinal.h" |
| 23 | 23 |
| 24 class ExtensionService; | 24 class ExtensionService; |
| 25 class ExtensionServiceTest; | 25 class ExtensionServiceTest; |
| 26 class SkBitmap; | 26 class SkBitmap; |
| 27 struct WebApplicationInfo; | 27 struct WebApplicationInfo; |
| 28 | 28 |
| 29 namespace base { | 29 namespace base { |
| 30 class SequencedTaskRunner; | 30 class SequencedTaskRunner; |
| 31 } | 31 } |
| (...skipping 364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 396 | 396 |
| 397 // Gives access to common methods and data of an extension installer. | 397 // Gives access to common methods and data of an extension installer. |
| 398 ExtensionInstaller installer_; | 398 ExtensionInstaller installer_; |
| 399 | 399 |
| 400 DISALLOW_COPY_AND_ASSIGN(CrxInstaller); | 400 DISALLOW_COPY_AND_ASSIGN(CrxInstaller); |
| 401 }; | 401 }; |
| 402 | 402 |
| 403 } // namespace extensions | 403 } // namespace extensions |
| 404 | 404 |
| 405 #endif // CHROME_BROWSER_EXTENSIONS_CRX_INSTALLER_H_ | 405 #endif // CHROME_BROWSER_EXTENSIONS_CRX_INSTALLER_H_ |
| OLD | NEW |