| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 1 // Copyright 2016 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 SERVICES_UI_DISPLAY_SCREEN_MANAGER_STUB_INTERNAL_H_ | 5 #ifndef SERVICES_UI_DISPLAY_SCREEN_MANAGER_STUB_INTERNAL_H_ |
| 6 #define SERVICES_UI_DISPLAY_SCREEN_MANAGER_STUB_INTERNAL_H_ | 6 #define SERVICES_UI_DISPLAY_SCREEN_MANAGER_STUB_INTERNAL_H_ |
| 7 | 7 |
| 8 #include <stdint.h> | 8 #include <stdint.h> |
| 9 | 9 |
| 10 #include "base/memory/weak_ptr.h" | 10 #include "base/memory/weak_ptr.h" |
| 11 #include "services/ui/display/screen_manager.h" | 11 #include "services/ui/display/screen_manager.h" |
| 12 #include "services/ui/display/viewport_metrics.h" | 12 #include "services/ui/display/viewport_metrics.h" |
| 13 | 13 |
| 14 namespace display { | 14 namespace display { |
| 15 | 15 |
| 16 // ScreenManagerStubInternal provides the necessary functionality to configure a | 16 // ScreenManagerStubInternal provides the necessary functionality to configure a |
| 17 // fixed | 17 // fixed 1024x768 display for non-ozone platforms. |
| 18 // 1024x768 display for non-ozone platforms. | |
| 19 class ScreenManagerStubInternal : public ScreenManager { | 18 class ScreenManagerStubInternal : public ScreenManager { |
| 20 public: | 19 public: |
| 21 ScreenManagerStubInternal(); | 20 ScreenManagerStubInternal(); |
| 22 ~ScreenManagerStubInternal() override; | 21 ~ScreenManagerStubInternal() override; |
| 23 | 22 |
| 24 private: | 23 private: |
| 25 // Fake creation of a single 1024x768 display. | 24 // Fake creation of a single 1024x768 display. |
| 26 void FixedSizeScreenConfiguration(); | 25 void FixedSizeScreenConfiguration(); |
| 27 | 26 |
| 28 // ScreenManager. | 27 // ScreenManager. |
| 29 void AddInterfaces(service_manager::InterfaceRegistry* registry) override; | 28 void AddInterfaces(service_manager::InterfaceRegistry* registry) override; |
| 30 void Init(ScreenManagerDelegate* delegate) override; | 29 void Init(ScreenManagerDelegate* delegate) override; |
| 31 void RequestCloseDisplay(int64_t display_id) override; | 30 void RequestCloseDisplay(int64_t display_id) override; |
| 32 int64_t GetPrimaryDisplayId() const override; | |
| 33 | 31 |
| 34 // Sample display information. | 32 // Sample display information. |
| 35 int64_t display_id_ = 1; | 33 int64_t display_id_ = 1; |
| 36 ViewportMetrics display_metrics_; | 34 ViewportMetrics display_metrics_; |
| 37 | 35 |
| 38 ScreenManagerDelegate* delegate_ = nullptr; | 36 ScreenManagerDelegate* delegate_ = nullptr; |
| 39 | 37 |
| 40 base::WeakPtrFactory<ScreenManagerStubInternal> weak_ptr_factory_; | 38 base::WeakPtrFactory<ScreenManagerStubInternal> weak_ptr_factory_; |
| 41 | 39 |
| 42 DISALLOW_COPY_AND_ASSIGN(ScreenManagerStubInternal); | 40 DISALLOW_COPY_AND_ASSIGN(ScreenManagerStubInternal); |
| 43 }; | 41 }; |
| 44 | 42 |
| 45 } // namespace display | 43 } // namespace display |
| 46 | 44 |
| 47 #endif // SERVICES_UI_DISPLAY_SCREEN_MANAGER_STUB_INTERNAL_H_ | 45 #endif // SERVICES_UI_DISPLAY_SCREEN_MANAGER_STUB_INTERNAL_H_ |
| OLD | NEW |