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 #pragma once | |
8 | 7 |
9 #include <list> | 8 #include <list> |
10 #include <string> | 9 #include <string> |
11 #include <utility> | 10 #include <utility> |
12 | 11 |
13 #include "chrome/browser/extensions/pending_extension_info.h" | 12 #include "chrome/browser/extensions/pending_extension_info.h" |
14 #include "chrome/common/extensions/extension.h" | 13 #include "chrome/common/extensions/extension.h" |
15 | 14 |
16 class ExtensionServiceInterface; | 15 class ExtensionServiceInterface; |
17 class GURL; | 16 class GURL; |
(...skipping 103 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 UpdatePendingExtensionAlreadyInstalled); | 120 UpdatePendingExtensionAlreadyInstalled); |
122 friend class extensions::ExtensionUpdaterTest; | 121 friend class extensions::ExtensionUpdaterTest; |
123 friend void extensions::SetupPendingExtensionManagerForTest( | 122 friend void extensions::SetupPendingExtensionManagerForTest( |
124 int count, const GURL& update_url, | 123 int count, const GURL& update_url, |
125 PendingExtensionManager* pending_extension_manager); | 124 PendingExtensionManager* pending_extension_manager); |
126 | 125 |
127 DISALLOW_COPY_AND_ASSIGN(PendingExtensionManager); | 126 DISALLOW_COPY_AND_ASSIGN(PendingExtensionManager); |
128 }; | 127 }; |
129 | 128 |
130 #endif // CHROME_BROWSER_EXTENSIONS_PENDING_EXTENSION_MANAGER_H_ | 129 #endif // CHROME_BROWSER_EXTENSIONS_PENDING_EXTENSION_MANAGER_H_ |
OLD | NEW |