OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_INSTALL_TRACKER_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_INSTALL_TRACKER_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_INSTALL_TRACKER_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_INSTALL_TRACKER_H_ |
7 | 7 |
8 #include "base/observer_list.h" | 8 #include "base/observer_list.h" |
9 #include "base/prefs/pref_change_registrar.h" | 9 #include "base/prefs/pref_change_registrar.h" |
10 #include "chrome/browser/extensions/install_observer.h" | 10 #include "chrome/browser/extensions/install_observer.h" |
(...skipping 12 matching lines...) Expand all Loading... |
23 public: | 23 public: |
24 InstallTracker(Profile* profile, | 24 InstallTracker(Profile* profile, |
25 extensions::ExtensionPrefs* prefs); | 25 extensions::ExtensionPrefs* prefs); |
26 virtual ~InstallTracker(); | 26 virtual ~InstallTracker(); |
27 | 27 |
28 void AddObserver(InstallObserver* observer); | 28 void AddObserver(InstallObserver* observer); |
29 void RemoveObserver(InstallObserver* observer); | 29 void RemoveObserver(InstallObserver* observer); |
30 | 30 |
31 void OnBeginExtensionInstall( | 31 void OnBeginExtensionInstall( |
32 const InstallObserver::ExtensionInstallParams& params); | 32 const InstallObserver::ExtensionInstallParams& params); |
| 33 void OnBeginExtensionDownload(const std::string& extension_id); |
33 void OnDownloadProgress(const std::string& extension_id, | 34 void OnDownloadProgress(const std::string& extension_id, |
34 int percent_downloaded); | 35 int percent_downloaded); |
| 36 void OnBeginCrxInstall(const std::string& extension_id); |
35 void OnInstallFailure(const std::string& extension_id); | 37 void OnInstallFailure(const std::string& extension_id); |
36 | 38 |
37 // Overriddes for BrowserContextKeyedService: | 39 // Overriddes for BrowserContextKeyedService: |
38 virtual void Shutdown() OVERRIDE; | 40 virtual void Shutdown() OVERRIDE; |
39 | 41 |
40 // content::NotificationObserver | 42 // content::NotificationObserver |
41 virtual void Observe(int type, | 43 virtual void Observe(int type, |
42 const content::NotificationSource& source, | 44 const content::NotificationSource& source, |
43 const content::NotificationDetails& details) OVERRIDE; | 45 const content::NotificationDetails& details) OVERRIDE; |
44 | 46 |
45 private: | 47 private: |
46 void OnAppsReordered(); | 48 void OnAppsReordered(); |
47 | 49 |
48 ObserverList<InstallObserver> observers_; | 50 ObserverList<InstallObserver> observers_; |
49 content::NotificationRegistrar registrar_; | 51 content::NotificationRegistrar registrar_; |
50 PrefChangeRegistrar pref_change_registrar_; | 52 PrefChangeRegistrar pref_change_registrar_; |
51 | 53 |
52 DISALLOW_COPY_AND_ASSIGN(InstallTracker); | 54 DISALLOW_COPY_AND_ASSIGN(InstallTracker); |
53 }; | 55 }; |
54 | 56 |
55 } // namespace extensions | 57 } // namespace extensions |
56 | 58 |
57 #endif // CHROME_BROWSER_EXTENSIONS_INSTALL_TRACKER_H_ | 59 #endif // CHROME_BROWSER_EXTENSIONS_INSTALL_TRACKER_H_ |
OLD | NEW |