| 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 "extensions/common/extension.h" |
| 21 #include "extensions/common/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; |
| (...skipping 375 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 406 | 406 |
| 407 // Gives access to common methods and data of an extension installer. | 407 // Gives access to common methods and data of an extension installer. |
| 408 ExtensionInstaller installer_; | 408 ExtensionInstaller installer_; |
| 409 | 409 |
| 410 DISALLOW_COPY_AND_ASSIGN(CrxInstaller); | 410 DISALLOW_COPY_AND_ASSIGN(CrxInstaller); |
| 411 }; | 411 }; |
| 412 | 412 |
| 413 } // namespace extensions | 413 } // namespace extensions |
| 414 | 414 |
| 415 #endif // CHROME_BROWSER_EXTENSIONS_CRX_INSTALLER_H_ | 415 #endif // CHROME_BROWSER_EXTENSIONS_CRX_INSTALLER_H_ |
| OLD | NEW |