OLD | NEW |
1 // Copyright (c) 2009 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2009 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_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_EXTENSION_INSTALL_UI_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_INSTALL_UI_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_EXTENSION_INSTALL_UI_H_ |
7 | 7 |
| 8 #include "app/gfx/native_widget_types.h" |
8 #include "base/file_path.h" | 9 #include "base/file_path.h" |
9 #include "base/gfx/native_widget_types.h" | |
10 #include "base/ref_counted.h" | 10 #include "base/ref_counted.h" |
11 | 11 |
12 #include <string> | 12 #include <string> |
13 | 13 |
14 class Extension; | 14 class Extension; |
15 class ExtensionsService; | 15 class ExtensionsService; |
16 class MessageLoop; | 16 class MessageLoop; |
17 class Profile; | 17 class Profile; |
18 class SandboxedExtensionUnpacker; | 18 class SandboxedExtensionUnpacker; |
19 class SkBitmap; | 19 class SkBitmap; |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
66 MessageLoop* ui_loop_; | 66 MessageLoop* ui_loop_; |
67 std::string previous_theme_id_; // Used to undo theme installation. | 67 std::string previous_theme_id_; // Used to undo theme installation. |
68 | 68 |
69 #if defined(TOOLKIT_GTK) | 69 #if defined(TOOLKIT_GTK) |
70 // Also needed to undo theme installation in the linux UI. | 70 // Also needed to undo theme installation in the linux UI. |
71 bool previous_use_gtk_theme_; | 71 bool previous_use_gtk_theme_; |
72 #endif | 72 #endif |
73 }; | 73 }; |
74 | 74 |
75 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_INSTALL_UI_H_ | 75 #endif // CHROME_BROWSER_EXTENSIONS_EXTENSION_INSTALL_UI_H_ |
OLD | NEW |