OLD | NEW |
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "base/gtest_prod_util.h" |
11 #include "chrome/browser/extensions/pending_extension_info.h" | 12 #include "chrome/browser/extensions/pending_extension_info.h" |
12 #include "extensions/common/manifest.h" | 13 #include "extensions/common/manifest.h" |
13 | 14 |
14 class GURL; | 15 class GURL; |
15 | 16 |
16 namespace base { | 17 namespace base { |
17 class Version; | 18 class Version; |
18 } | 19 } |
19 | 20 |
20 namespace content { | 21 namespace content { |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 friend void SetupPendingExtensionManagerForTest( | 146 friend void SetupPendingExtensionManagerForTest( |
146 int count, const GURL& update_url, | 147 int count, const GURL& update_url, |
147 PendingExtensionManager* pending_extension_manager); | 148 PendingExtensionManager* pending_extension_manager); |
148 | 149 |
149 DISALLOW_COPY_AND_ASSIGN(PendingExtensionManager); | 150 DISALLOW_COPY_AND_ASSIGN(PendingExtensionManager); |
150 }; | 151 }; |
151 | 152 |
152 } // namespace extensions | 153 } // namespace extensions |
153 | 154 |
154 #endif // CHROME_BROWSER_EXTENSIONS_PENDING_EXTENSION_MANAGER_H_ | 155 #endif // CHROME_BROWSER_EXTENSIONS_PENDING_EXTENSION_MANAGER_H_ |
OLD | NEW |