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

Unified Diff: chrome/browser/extensions/extension_install_ui_default.h

Issue 12095052: Move app_launcher.* out of chrome/browser/extensions and into apps/ (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Beserk Q. More rebase Created 7 years, 10 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/extensions/extension_install_ui_default.h
diff --git a/chrome/browser/extensions/extension_install_ui_default.h b/chrome/browser/extensions/extension_install_ui_default.h
deleted file mode 100644
index 5c719b934a434ce3a2e676008b197e8c4fc91e7a..0000000000000000000000000000000000000000
--- a/chrome/browser/extensions/extension_install_ui_default.h
+++ /dev/null
@@ -1,45 +0,0 @@
-// Copyright (c) 2012 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_INSTALL_UI_DEFAULT_H_
-#define CHROME_BROWSER_EXTENSIONS_EXTENSION_INSTALL_UI_DEFAULT_H_
-
-#include "chrome/browser/extensions/extension_install_ui.h"
-
-class InfoBarDelegate;
-class Profile;
-
-namespace content {
-class WebContents;
-}
-
-class ExtensionInstallUIDefault : public ExtensionInstallUI {
- public:
- explicit ExtensionInstallUIDefault(Profile* profile);
- virtual ~ExtensionInstallUIDefault();
-
- // ExtensionInstallUI implementation:
- virtual void OnInstallSuccess(const extensions::Extension* extension,
- SkBitmap* icon) OVERRIDE;
- virtual void OnInstallFailure(
- const extensions::CrxInstallerError& error) OVERRIDE;
- virtual void SetSkipPostInstallUI(bool skip_ui) OVERRIDE;
- virtual void SetUseAppInstalledBubble(bool use_bubble) OVERRIDE;
-
- private:
- // Whether or not to show the default UI after completing the installation.
- bool skip_post_install_ui_;
-
- // Used to undo theme installation.
- std::string previous_theme_id_;
- bool previous_using_native_theme_;
-
- // Whether to show an installed bubble on app install, or use the default
- // action of opening a new tab page.
- bool use_app_installed_bubble_;
-
- DISALLOW_IMPLICIT_CONSTRUCTORS(ExtensionInstallUIDefault);
-};
-
-#endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_INSTALL_UI_DEFAULT_H_
« no previous file with comments | « chrome/browser/extensions/extension_install_ui_android.cc ('k') | chrome/browser/extensions/extension_install_ui_default.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698