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

Unified 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/ui/athena/extensions/extension_install_ui_athena.h
diff --git a/chrome/browser/ui/athena/extensions/extension_install_ui_athena.h b/chrome/browser/ui/athena/extensions/extension_install_ui_athena.h
new file mode 100644
index 0000000000000000000000000000000000000000..c9a9a2a9ab4ffd642900f199429adbcc47d3c96d
--- /dev/null
+++ b/chrome/browser/ui/athena/extensions/extension_install_ui_athena.h
@@ -0,0 +1,18 @@
+#include "base/memory/scoped_ptr.h"
+#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
+
+class ExtensionInstallUIAthena : public ExtensionInstallUI {
+ public:
+ explicit ExtensionInstallUIAthena(Profile* profile);
+ virtual ~ExtensionInstallUIAthena();
+
+ // ExtensionInstallUI:
+ virtual void OnInstallSuccess(const extensions::Extension* extension,
+ const SkBitmap* icon) OVERRIDE;
+ virtual void OnInstallFailure(
+ const extensions::CrxInstallerError& error) OVERRIDE;
+ virtual void SetUseAppInstalledBubble(bool use_bubble) OVERRIDE;
+
+ private:
+ DISALLOW_COPY_AND_ASSIGN(ExtensionInstallUIAthena);
+};

Powered by Google App Engine
This is Rietveld 408576698