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

Side by Side Diff: chrome/browser/ui/athena/extensions/extension_install_ui_athena.h

Issue 634313004: Display dialog when app install succeeds / fails on Athena (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 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
(Empty)
1 #include "base/memory/scoped_ptr.h"
2 #include "chrome/browser/extensions/extension_install_ui.h"
oshima 2014/10/09 19:44:48 we should not have athena code under c/b/ except v
3
4 class ExtensionInstallUIAthena : public ExtensionInstallUI {
5 public:
6 explicit ExtensionInstallUIAthena(Profile* profile);
7 virtual ~ExtensionInstallUIAthena();
8
9 // ExtensionInstallUI:
10 virtual void OnInstallSuccess(const extensions::Extension* extension,
11 const SkBitmap* icon) OVERRIDE;
12 virtual void OnInstallFailure(
13 const extensions::CrxInstallerError& error) OVERRIDE;
14 virtual void SetUseAppInstalledBubble(bool use_bubble) OVERRIDE;
15
16 private:
17 DISALLOW_COPY_AND_ASSIGN(ExtensionInstallUIAthena);
18 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698