Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(39)

Side by Side Diff: chrome/browser/extensions/install_observer.h

Issue 17038002: Separate the NTP app ordering from the app list app ordering (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 7 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_OBSERVER_H_ 5 #ifndef CHROME_BROWSER_EXTENSIONS_INSTALL_OBSERVER_H_
6 #define CHROME_BROWSER_EXTENSIONS_INSTALL_OBSERVER_H_ 6 #define CHROME_BROWSER_EXTENSIONS_INSTALL_OBSERVER_H_
7 7
8 namespace gfx { 8 namespace gfx {
9 class ImageSkia; 9 class ImageSkia;
10 } 10 }
(...skipping 13 matching lines...) Expand all
24 24
25 virtual void OnDownloadProgress(const std::string& extension_id, 25 virtual void OnDownloadProgress(const std::string& extension_id,
26 int percent_downloaded) = 0; 26 int percent_downloaded) = 0;
27 27
28 virtual void OnInstallFailure(const std::string& extension_id) = 0; 28 virtual void OnInstallFailure(const std::string& extension_id) = 0;
29 29
30 virtual void OnExtensionInstalled(const Extension* extension) = 0; 30 virtual void OnExtensionInstalled(const Extension* extension) = 0;
31 virtual void OnExtensionLoaded(const Extension* extension) = 0; 31 virtual void OnExtensionLoaded(const Extension* extension) = 0;
32 virtual void OnExtensionUnloaded(const Extension* extension) = 0; 32 virtual void OnExtensionUnloaded(const Extension* extension) = 0;
33 virtual void OnExtensionUninstalled(const Extension* extension) = 0; 33 virtual void OnExtensionUninstalled(const Extension* extension) = 0;
34 virtual void OnAppsReordered() = 0; 34 virtual void OnAppListReordered() = 0;
35 virtual void OnAppInstalledToAppList(const std::string& extension_id) = 0; 35 virtual void OnAppInstalledToAppList(const std::string& extension_id) = 0;
36 36
37 // Notifies observers that the observed object is going away. 37 // Notifies observers that the observed object is going away.
38 virtual void OnShutdown() = 0; 38 virtual void OnShutdown() = 0;
39 39
40 protected: 40 protected:
41 virtual ~InstallObserver() {} 41 virtual ~InstallObserver() {}
42 }; 42 };
43 43
44 } // namespace extensions 44 } // namespace extensions
45 45
46 #endif // CHROME_BROWSER_EXTENSIONS_INSTALL_OBSERVER_H_ 46 #endif // CHROME_BROWSER_EXTENSIONS_INSTALL_OBSERVER_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698