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_POLICY_APP_PACK_UPDATER_H_ | 5 #ifndef CHROME_BROWSER_POLICY_APP_PACK_UPDATER_H_ |
6 #define CHROME_BROWSER_POLICY_APP_PACK_UPDATER_H_ | 6 #define CHROME_BROWSER_POLICY_APP_PACK_UPDATER_H_ |
7 #pragma once | 7 #pragma once |
8 | 8 |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
11 #include <string> | 11 #include <string> |
12 | 12 |
13 #include "base/basictypes.h" | 13 #include "base/basictypes.h" |
14 #include "base/callback.h" | 14 #include "base/callback.h" |
15 #include "base/compiler_specific.h" | 15 #include "base/compiler_specific.h" |
16 #include "base/file_path.h" | 16 #include "base/file_path.h" |
17 #include "base/memory/weak_ptr.h" | 17 #include "base/memory/weak_ptr.h" |
18 #include "base/threading/sequenced_worker_pool.h" | 18 #include "base/threading/sequenced_worker_pool.h" |
19 #include "chrome/browser/extensions/updater/extension_downloader_delegate.h" | 19 #include "chrome/browser/extensions/updater/extension_downloader_delegate.h" |
20 #include "chrome/browser/policy/cloud_policy_subsystem.h" | 20 #include "chrome/browser/policy/cloud_policy_subsystem.h" |
21 #include "content/public/browser/notification_observer.h" | 21 #include "content/public/browser/notification_observer.h" |
22 #include "content/public/browser/notification_registrar.h" | 22 #include "content/public/browser/notification_registrar.h" |
23 #include "net/base/network_change_notifier.h" | 23 #include "net/base/network_change_notifier.h" |
24 | 24 |
25 class CrxInstaller; | |
26 class ExternalExtensionLoader; | 25 class ExternalExtensionLoader; |
27 class FilePath; | 26 class FilePath; |
28 class GURL; | 27 class GURL; |
29 | 28 |
30 namespace extensions { | 29 namespace extensions { |
| 30 class CrxInstaller; |
31 class ExtensionDownloader; | 31 class ExtensionDownloader; |
32 } | 32 } |
33 | 33 |
34 namespace net { | 34 namespace net { |
35 class URLRequestContextGetter; | 35 class URLRequestContextGetter; |
36 } | 36 } |
37 | 37 |
38 namespace tracked_objects { | 38 namespace tracked_objects { |
39 class Location; | 39 class Location; |
40 } | 40 } |
(...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
231 | 231 |
232 // Request context used by the |downloader_|. | 232 // Request context used by the |downloader_|. |
233 net::URLRequestContextGetter* request_context_; | 233 net::URLRequestContextGetter* request_context_; |
234 | 234 |
235 DISALLOW_COPY_AND_ASSIGN(AppPackUpdater); | 235 DISALLOW_COPY_AND_ASSIGN(AppPackUpdater); |
236 }; | 236 }; |
237 | 237 |
238 } // namespace policy | 238 } // namespace policy |
239 | 239 |
240 #endif // CHROME_BROWSER_POLICY_APP_PACK_UPDATER_H_ | 240 #endif // CHROME_BROWSER_POLICY_APP_PACK_UPDATER_H_ |
OLD | NEW |