| 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 #include "chrome/browser/extensions/extension_install_ui_default.h" | 5 #include "chrome/browser/extensions/extension_install_ui_default.h" |
| 6 | 6 |
| 7 #include "base/command_line.h" | 7 #include "base/command_line.h" |
| 8 #include "base/utf_string_conversions.h" | 8 #include "base/utf_string_conversions.h" |
| 9 #include "chrome/browser/extensions/extension_install_prompt.h" | 9 #include "chrome/browser/extensions/extension_install_prompt.h" |
| 10 #include "chrome/browser/extensions/theme_installed_infobar_delegate.h" | 10 #include "chrome/browser/extensions/theme_installed_infobar_delegate.h" |
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 return false; | 80 return false; |
| 81 } | 81 } |
| 82 | 82 |
| 83 Browser* browser_; | 83 Browser* browser_; |
| 84 CrxInstallerError error_; | 84 CrxInstallerError error_; |
| 85 }; | 85 }; |
| 86 | 86 |
| 87 } // namespace | 87 } // namespace |
| 88 | 88 |
| 89 ExtensionInstallUIDefault::ExtensionInstallUIDefault(Browser* browser) | 89 ExtensionInstallUIDefault::ExtensionInstallUIDefault(Browser* browser) |
| 90 : browser_(browser), | 90 : skip_post_install_ui_(false), |
| 91 skip_post_install_ui_(false), | |
| 92 previous_using_native_theme_(false), | 91 previous_using_native_theme_(false), |
| 93 use_app_installed_bubble_(false) { | 92 use_app_installed_bubble_(false) { |
| 93 browser_ = browser; |
| 94 |
| 94 // Remember the current theme in case the user presses undo. | 95 // Remember the current theme in case the user presses undo. |
| 95 if (browser) { | 96 if (browser) { |
| 96 Profile* profile = browser->profile(); | 97 Profile* profile = browser->profile(); |
| 97 const Extension* previous_theme = | 98 const Extension* previous_theme = |
| 98 ThemeServiceFactory::GetThemeForProfile(profile); | 99 ThemeServiceFactory::GetThemeForProfile(profile); |
| 99 if (previous_theme) | 100 if (previous_theme) |
| 100 previous_theme_id_ = previous_theme->id(); | 101 previous_theme_id_ = previous_theme->id(); |
| 101 previous_using_native_theme_ = | 102 previous_using_native_theme_ = |
| 102 ThemeServiceFactory::GetForProfile(profile)->UsingNativeTheme(); | 103 ThemeServiceFactory::GetForProfile(profile)->UsingNativeTheme(); |
| 103 } | 104 } |
| (...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 251 #else | 252 #else |
| 252 NOTREACHED(); | 253 NOTREACHED(); |
| 253 #endif | 254 #endif |
| 254 } | 255 } |
| 255 } | 256 } |
| 256 | 257 |
| 257 // static | 258 // static |
| 258 void ExtensionInstallUI::DisableFailureUIForTests() { | 259 void ExtensionInstallUI::DisableFailureUIForTests() { |
| 259 disable_failure_ui_for_tests = true; | 260 disable_failure_ui_for_tests = true; |
| 260 } | 261 } |
| OLD | NEW |