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
3 // found in the LICENSE file.
5 #ifndef CHROME_BROWSER_EXTENSIONS_INSTALL_TRACKER_H_
6 #define CHROME_BROWSER_EXTENSIONS_INSTALL_TRACKER_H_
8 #include "base/observer_list.h"
9 #include "base/prefs/pref_change_registrar.h"
10 #include "chrome/browser/extensions/install_observer.h"
11 #include "components/browser_context_keyed_service/browser_context_keyed_service.h"
12 #include "content/public/browser/notification_observer.h"
13 #include "content/public/browser/notification_registrar.h"
17 namespace extensions
{
21 class InstallTracker
: public BrowserContextKeyedService
,
22 public content::NotificationObserver
{
24 InstallTracker(Profile
* profile
,
25 extensions::ExtensionPrefs
* prefs
);
26 virtual ~InstallTracker();
28 void AddObserver(InstallObserver
* observer
);
29 void RemoveObserver(InstallObserver
* observer
);
31 void OnBeginExtensionInstall(
32 const InstallObserver::ExtensionInstallParams
& params
);
33 void OnDownloadProgress(const std::string
& extension_id
,
34 int percent_downloaded
);
35 void OnInstallFailure(const std::string
& extension_id
);
37 // Overriddes for BrowserContextKeyedService:
38 virtual void Shutdown() OVERRIDE
;
40 // content::NotificationObserver
41 virtual void Observe(int type
,
42 const content::NotificationSource
& source
,
43 const content::NotificationDetails
& details
) OVERRIDE
;
46 void OnAppsReordered();
48 ObserverList
<InstallObserver
> observers_
;
49 content::NotificationRegistrar registrar_
;
50 PrefChangeRegistrar pref_change_registrar_
;
52 DISALLOW_COPY_AND_ASSIGN(InstallTracker
);
55 } // namespace extensions
57 #endif // CHROME_BROWSER_EXTENSIONS_INSTALL_TRACKER_H_