Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(283)

Side by Side Diff: chrome/browser/ui/views/chrome_browser_main_extra_parts_views.h

Issue 1680033004: Move gtk-specific browser main parts stuff to its own file. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase, fix ToolkitInitialized() Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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_
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/DEPS ('k') | chrome/browser/ui/views/chrome_browser_main_extra_parts_views.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698