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_UPDATER_EXTENSION_UPDATER_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_UPDATER_EXTENSION_UPDATER_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_UPDATER_EXTENSION_UPDATER_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_UPDATER_EXTENSION_UPDATER_H_ |
7 | 7 |
8 #include <list> | 8 #include <list> |
9 #include <map> | 9 #include <map> |
10 #include <set> | 10 #include <set> |
11 #include <stack> | 11 #include <stack> |
12 #include <string> | 12 #include <string> |
13 | 13 |
14 #include "base/callback_forward.h" | 14 #include "base/callback_forward.h" |
15 #include "base/compiler_specific.h" | 15 #include "base/compiler_specific.h" |
16 #include "base/files/file_path.h" | 16 #include "base/files/file_path.h" |
17 #include "base/gtest_prod_util.h" | |
18 #include "base/memory/scoped_ptr.h" | 17 #include "base/memory/scoped_ptr.h" |
19 #include "base/memory/weak_ptr.h" | 18 #include "base/memory/weak_ptr.h" |
20 #include "base/scoped_observer.h" | 19 #include "base/scoped_observer.h" |
21 #include "base/time/time.h" | 20 #include "base/time/time.h" |
22 #include "base/timer/timer.h" | 21 #include "base/timer/timer.h" |
23 #include "content/public/browser/notification_observer.h" | 22 #include "content/public/browser/notification_observer.h" |
24 #include "content/public/browser/notification_registrar.h" | 23 #include "content/public/browser/notification_registrar.h" |
25 #include "extensions/browser/extension_registry_observer.h" | 24 #include "extensions/browser/extension_registry_observer.h" |
26 #include "extensions/browser/updater/extension_downloader.h" | 25 #include "extensions/browser/updater/extension_downloader.h" |
27 #include "extensions/browser/updater/extension_downloader_delegate.h" | 26 #include "extensions/browser/updater/extension_downloader_delegate.h" |
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
292 std::set<std::string> forced_updates_; | 291 std::set<std::string> forced_updates_; |
293 | 292 |
294 base::WeakPtrFactory<ExtensionUpdater> weak_ptr_factory_; | 293 base::WeakPtrFactory<ExtensionUpdater> weak_ptr_factory_; |
295 | 294 |
296 DISALLOW_COPY_AND_ASSIGN(ExtensionUpdater); | 295 DISALLOW_COPY_AND_ASSIGN(ExtensionUpdater); |
297 }; | 296 }; |
298 | 297 |
299 } // namespace extensions | 298 } // namespace extensions |
300 | 299 |
301 #endif // CHROME_BROWSER_EXTENSIONS_UPDATER_EXTENSION_UPDATER_H_ | 300 #endif // CHROME_BROWSER_EXTENSIONS_UPDATER_EXTENSION_UPDATER_H_ |
OLD | NEW |