| 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_PENDING_EXTENSION_MANAGER_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_PENDING_EXTENSION_MANAGER_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_PENDING_EXTENSION_MANAGER_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_PENDING_EXTENSION_MANAGER_H_ |
| 7 | 7 |
| 8 #include <list> | 8 #include <list> |
| 9 #include <string> | 9 #include <string> |
| 10 | 10 |
| 11 #include "chrome/browser/extensions/pending_extension_info.h" | 11 #include "chrome/browser/extensions/pending_extension_info.h" |
| 12 #include "chrome/common/extensions/extension.h" | 12 #include "extensions/common/extension.h" |
| 13 #include "extensions/common/manifest.h" | 13 #include "extensions/common/manifest.h" |
| 14 | 14 |
| 15 class ExtensionServiceInterface; | 15 class ExtensionServiceInterface; |
| 16 class GURL; | 16 class GURL; |
| 17 class PendingExtensionManager; | 17 class PendingExtensionManager; |
| 18 | 18 |
| 19 namespace base { | 19 namespace base { |
| 20 class Version; | 20 class Version; |
| 21 } | 21 } |
| 22 | 22 |
| (...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 145 friend void SetupPendingExtensionManagerForTest( | 145 friend void SetupPendingExtensionManagerForTest( |
| 146 int count, const GURL& update_url, | 146 int count, const GURL& update_url, |
| 147 PendingExtensionManager* pending_extension_manager); | 147 PendingExtensionManager* pending_extension_manager); |
| 148 | 148 |
| 149 DISALLOW_COPY_AND_ASSIGN(PendingExtensionManager); | 149 DISALLOW_COPY_AND_ASSIGN(PendingExtensionManager); |
| 150 }; | 150 }; |
| 151 | 151 |
| 152 } // namespace extensions | 152 } // namespace extensions |
| 153 | 153 |
| 154 #endif // CHROME_BROWSER_EXTENSIONS_PENDING_EXTENSION_MANAGER_H_ | 154 #endif // CHROME_BROWSER_EXTENSIONS_PENDING_EXTENSION_MANAGER_H_ |
| OLD | NEW |