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 | |
8 | 7 |
9 #include "chrome/browser/extensions/extension_install_ui.h" | 8 #include "chrome/browser/extensions/extension_install_ui.h" |
10 | 9 |
11 class InfoBarDelegate; | 10 class InfoBarDelegate; |
12 class Profile; | 11 class Profile; |
13 class TabContents; | 12 class TabContents; |
14 | 13 |
15 class ExtensionInstallUIDefault : public ExtensionInstallUI { | 14 class ExtensionInstallUIDefault : public ExtensionInstallUI { |
16 public: | 15 public: |
17 explicit ExtensionInstallUIDefault(Profile* profile); | 16 explicit ExtensionInstallUIDefault(Profile* profile); |
(...skipping 30 matching lines...) Expand all Loading... |
48 bool previous_using_native_theme_; | 47 bool previous_using_native_theme_; |
49 | 48 |
50 // Whether to show an installed bubble on app install, or use the default | 49 // Whether to show an installed bubble on app install, or use the default |
51 // action of opening a new tab page. | 50 // action of opening a new tab page. |
52 bool use_app_installed_bubble_; | 51 bool use_app_installed_bubble_; |
53 | 52 |
54 DISALLOW_IMPLICIT_CONSTRUCTORS(ExtensionInstallUIDefault); | 53 DISALLOW_IMPLICIT_CONSTRUCTORS(ExtensionInstallUIDefault); |
55 }; | 54 }; |
56 | 55 |
57 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_INSTALL_UI_DEFAULT_H_ | 56 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_INSTALL_UI_DEFAULT_H_ |
OLD | NEW |