Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_EXTENSION_INSTALL_UI_DEFAULT_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_INSTALL_UI_DEFAULT_H_ |
| 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_INSTALL_UI_DEFAULT_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_INSTALL_UI_DEFAULT_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "chrome/browser/extensions/extension_install_ui.h" | 9 #include "chrome/browser/extensions/extension_install_ui.h" |
| 10 | 10 |
| 11 class InfoBarDelegate; | 11 class InfoBarDelegate; |
| 12 class Profile; | 12 class Profile; |
| 13 class TabContents; | 13 class TabContents; |
| 14 | 14 |
| 15 class ExtensionInstallUIDefault : public ExtensionInstallUI { | 15 class ExtensionInstallUIDefault : public ExtensionInstallUI { |
|
jstritar
2012/06/25 15:10:35
If you're familiar with this class, can you add a
Evan Stade
2012/06/25 20:31:42
yes it was (it was the biggest source of sync conf
| |
| 16 public: | 16 public: |
| 17 explicit ExtensionInstallUIDefault(Browser* browser); | 17 explicit ExtensionInstallUIDefault(Browser* browser); |
| 18 virtual ~ExtensionInstallUIDefault(); | 18 virtual ~ExtensionInstallUIDefault(); |
| 19 | 19 |
| 20 // ExtensionInstallUI implementation: | 20 // ExtensionInstallUI implementation: |
| 21 virtual void OnInstallSuccess(const extensions::Extension* extension, | 21 virtual void OnInstallSuccess(const extensions::Extension* extension, |
| 22 SkBitmap* icon) OVERRIDE; | 22 SkBitmap* icon) OVERRIDE; |
| 23 virtual void OnInstallFailure(const CrxInstallerError& error) OVERRIDE; | 23 virtual void OnInstallFailure(const CrxInstallerError& error) OVERRIDE; |
| 24 virtual void SetSkipPostInstallUI(bool skip_ui) OVERRIDE; | 24 virtual void SetSkipPostInstallUI(bool skip_ui) OVERRIDE; |
| 25 virtual void SetUseAppInstalledBubble(bool use_bubble) OVERRIDE; | 25 virtual void SetUseAppInstalledBubble(bool use_bubble) OVERRIDE; |
| 26 | 26 |
| 27 private: | 27 private: |
| 28 // Shows an infobar for a newly-installed theme. previous_theme_id should be | 28 // Shows an infobar for a newly-installed theme. previous_theme_id should be |
| 29 // empty if the previous theme was the system/default theme. | 29 // empty if the previous theme was the system/default theme. |
| 30 static void ShowThemeInfoBar(const std::string& previous_theme_id, | 30 static void ShowThemeInfoBar(const std::string& previous_theme_id, |
| 31 bool previous_using_native_theme, | 31 bool previous_using_native_theme, |
| 32 const extensions::Extension* new_theme, | 32 const extensions::Extension* new_theme, |
| 33 Profile* profile); | 33 Profile* profile); |
| 34 | 34 |
| 35 // Returns the delegate to control the browser's info bar. This is | 35 // Returns the delegate to control the browser's info bar. This is |
| 36 // within its own function due to its platform-specific nature. | 36 // within its own function due to its platform-specific nature. |
| 37 static InfoBarDelegate* GetNewThemeInstalledInfoBarDelegate( | 37 static InfoBarDelegate* GetNewThemeInstalledInfoBarDelegate( |
| 38 TabContents* tab_contents, | 38 TabContents* tab_contents, |
| 39 const extensions::Extension* new_theme, | 39 const extensions::Extension* new_theme, |
| 40 const std::string& previous_theme_id, | 40 const std::string& previous_theme_id, |
| 41 bool previous_using_native_theme); | 41 bool previous_using_native_theme); |
| 42 | 42 |
| 43 Browser* browser_; | |
| 44 | |
| 45 // Whether or not to show the default UI after completing the installation. | 43 // Whether or not to show the default UI after completing the installation. |
| 46 bool skip_post_install_ui_; | 44 bool skip_post_install_ui_; |
| 47 | 45 |
| 48 // Used to undo theme installation. | 46 // Used to undo theme installation. |
| 49 std::string previous_theme_id_; | 47 std::string previous_theme_id_; |
| 50 bool previous_using_native_theme_; | 48 bool previous_using_native_theme_; |
| 51 | 49 |
| 52 // Whether to show an installed bubble on app install, or use the default | 50 // Whether to show an installed bubble on app install, or use the default |
| 53 // action of opening a new tab page. | 51 // action of opening a new tab page. |
| 54 bool use_app_installed_bubble_; | 52 bool use_app_installed_bubble_; |
| 55 | 53 |
| 56 DISALLOW_IMPLICIT_CONSTRUCTORS(ExtensionInstallUIDefault); | 54 DISALLOW_IMPLICIT_CONSTRUCTORS(ExtensionInstallUIDefault); |
| 57 }; | 55 }; |
| 58 | 56 |
| 59 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_INSTALL_UI_DEFAULT_H_ | 57 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_INSTALL_UI_DEFAULT_H_ |
| OLD | NEW |