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_UI_VIEWS_CHROME_BROWSER_MAIN_EXTRA_PARTS_VIEWS_H_ | 5 #ifndef CHROME_BROWSER_UI_VIEWS_CHROME_BROWSER_MAIN_EXTRA_PARTS_VIEWS_H_ |
6 #define CHROME_BROWSER_UI_VIEWS_CHROME_BROWSER_MAIN_EXTRA_PARTS_VIEWS_H_ | 6 #define CHROME_BROWSER_UI_VIEWS_CHROME_BROWSER_MAIN_EXTRA_PARTS_VIEWS_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "chrome/browser/chrome_browser_main_extra_parts.h" | 10 #include "chrome/browser/chrome_browser_main_extra_parts.h" |
11 | 11 |
12 namespace views { | 12 namespace views { |
13 class ViewsDelegate; | 13 class ViewsDelegate; |
14 } | 14 } |
15 | 15 |
16 #if defined(USE_AURA) | 16 #if defined(USE_AURA) |
17 namespace wm { | 17 namespace wm { |
18 class WMState; | 18 class WMState; |
19 } | 19 } |
20 #endif | 20 #endif |
21 | 21 |
22 class ChromeBrowserMainExtraPartsViews : public ChromeBrowserMainExtraParts { | 22 class ChromeBrowserMainExtraPartsViews : public ChromeBrowserMainExtraParts { |
23 public: | 23 public: |
24 ChromeBrowserMainExtraPartsViews(); | 24 ChromeBrowserMainExtraPartsViews(); |
25 ~ChromeBrowserMainExtraPartsViews() override; | 25 ~ChromeBrowserMainExtraPartsViews() override; |
26 | 26 |
27 // Overridden from ChromeBrowserMainExtraParts: | 27 // Overridden from ChromeBrowserMainExtraParts: |
28 void ToolkitInitialized() override; | 28 void ToolkitInitialized() override; |
| 29 void PreCreateThreads() override; |
29 | 30 |
30 private: | 31 private: |
31 scoped_ptr<views::ViewsDelegate> views_delegate_; | 32 scoped_ptr<views::ViewsDelegate> views_delegate_; |
32 | 33 |
33 #if defined(USE_AURA) | 34 #if defined(USE_AURA) |
34 scoped_ptr<wm::WMState> wm_state_; | 35 scoped_ptr<wm::WMState> wm_state_; |
35 #endif | 36 #endif |
36 | 37 |
37 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainExtraPartsViews); | 38 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainExtraPartsViews); |
38 }; | 39 }; |
39 | 40 |
40 #endif // CHROME_BROWSER_UI_VIEWS_CHROME_BROWSER_MAIN_EXTRA_PARTS_VIEWS_H_ | 41 #endif // CHROME_BROWSER_UI_VIEWS_CHROME_BROWSER_MAIN_EXTRA_PARTS_VIEWS_H_ |
OLD | NEW |