| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 BLIMP_CLIENT_APP_LINUX_BLIMP_DISPLAY_MANAGER_H_ | 5 #ifndef BLIMP_CLIENT_APP_LINUX_BLIMP_DISPLAY_MANAGER_H_ |
| 6 #define BLIMP_CLIENT_APP_LINUX_BLIMP_DISPLAY_MANAGER_H_ | 6 #define BLIMP_CLIENT_APP_LINUX_BLIMP_DISPLAY_MANAGER_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/macros.h" | 10 #include "base/macros.h" |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 51 float device_pixel_ratio) override; | 51 float device_pixel_ratio) override; |
| 52 void OnAcceleratedWidgetDestroyed() override; | 52 void OnAcceleratedWidgetDestroyed() override; |
| 53 void OnActivationChanged(bool active) override {} | 53 void OnActivationChanged(bool active) override {} |
| 54 | 54 |
| 55 private: | 55 private: |
| 56 float device_pixel_ratio_; | 56 float device_pixel_ratio_; |
| 57 | 57 |
| 58 BlimpDisplayManagerDelegate* delegate_; | 58 BlimpDisplayManagerDelegate* delegate_; |
| 59 TabControlFeature* tab_control_feature_; | 59 TabControlFeature* tab_control_feature_; |
| 60 | 60 |
| 61 std::unique_ptr<BlimpCompositorDependencies> compositor_dependencies_; |
| 62 std::unique_ptr<BlimpCompositorManager> compositor_manager_; |
| 61 std::unique_ptr<BrowserCompositor> compositor_; | 63 std::unique_ptr<BrowserCompositor> compositor_; |
| 62 | |
| 63 std::unique_ptr<BlimpCompositorManager> blimp_compositor_manager_; | |
| 64 std::unique_ptr<ui::PlatformWindow> platform_window_; | 64 std::unique_ptr<ui::PlatformWindow> platform_window_; |
| 65 | 65 |
| 66 DISALLOW_COPY_AND_ASSIGN(BlimpDisplayManager); | 66 DISALLOW_COPY_AND_ASSIGN(BlimpDisplayManager); |
| 67 }; | 67 }; |
| 68 | 68 |
| 69 } // namespace client | 69 } // namespace client |
| 70 } // namespace blimp | 70 } // namespace blimp |
| 71 | 71 |
| 72 #endif // BLIMP_CLIENT_APP_LINUX_BLIMP_DISPLAY_MANAGER_H_ | 72 #endif // BLIMP_CLIENT_APP_LINUX_BLIMP_DISPLAY_MANAGER_H_ |
| OLD | NEW |