| 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 <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 // Overridden from ChromeBrowserMainExtraParts: | 33 // Overridden from ChromeBrowserMainExtraParts: |
| 34 void ToolkitInitialized() override; | 34 void ToolkitInitialized() override; |
| 35 void PreCreateThreads() override; | 35 void PreCreateThreads() override; |
| 36 void PreProfileInit() override; | 36 void PreProfileInit() override; |
| 37 | 37 |
| 38 private: | 38 private: |
| 39 std::unique_ptr<views::ViewsDelegate> views_delegate_; | 39 std::unique_ptr<views::ViewsDelegate> views_delegate_; |
| 40 | 40 |
| 41 #if defined(USE_AURA) | 41 #if defined(USE_AURA) |
| 42 std::unique_ptr<wm::WMState> wm_state_; | 42 std::unique_ptr<wm::WMState> wm_state_; |
| 43 #endif | |
| 44 #if defined(USE_AURA) && defined(MOJO_SHELL_CLIENT) | |
| 45 std::unique_ptr<views::WindowManagerConnection> window_manager_connection_; | 43 std::unique_ptr<views::WindowManagerConnection> window_manager_connection_; |
| 46 | 44 |
| 47 // Subscribes to updates about input-devices. | 45 // Subscribes to updates about input-devices. |
| 48 std::unique_ptr<ui::InputDeviceClient> input_device_client_; | 46 std::unique_ptr<ui::InputDeviceClient> input_device_client_; |
| 49 #endif | 47 #endif |
| 50 | 48 |
| 51 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainExtraPartsViews); | 49 DISALLOW_COPY_AND_ASSIGN(ChromeBrowserMainExtraPartsViews); |
| 52 }; | 50 }; |
| 53 | 51 |
| 54 #endif // CHROME_BROWSER_UI_VIEWS_CHROME_BROWSER_MAIN_EXTRA_PARTS_VIEWS_H_ | 52 #endif // CHROME_BROWSER_UI_VIEWS_CHROME_BROWSER_MAIN_EXTRA_PARTS_VIEWS_H_ |
| OLD | NEW |