| OLD | NEW |
| (Empty) |
| 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 | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef SERVICES_UI_DISPLAY_PLATFORM_SCREEN_H_ | |
| 6 #define SERVICES_UI_DISPLAY_PLATFORM_SCREEN_H_ | |
| 7 | |
| 8 #include <memory> | |
| 9 | |
| 10 #include "base/macros.h" | |
| 11 #include "services/ui/display/platform_screen_delegate.h" | |
| 12 | |
| 13 namespace service_manager { | |
| 14 class InterfaceRegistry; | |
| 15 } | |
| 16 | |
| 17 namespace display { | |
| 18 | |
| 19 // PlatformScreen provides the necessary functionality to configure all | |
| 20 // attached physical displays. | |
| 21 class PlatformScreen { | |
| 22 public: | |
| 23 PlatformScreen(); | |
| 24 virtual ~PlatformScreen(); | |
| 25 | |
| 26 // Creates a singleton PlatformScreen instance. | |
| 27 static std::unique_ptr<PlatformScreen> Create(); | |
| 28 static PlatformScreen* GetInstance(); | |
| 29 | |
| 30 // Registers Mojo interfaces provided. | |
| 31 virtual void AddInterfaces(service_manager::InterfaceRegistry* registry) = 0; | |
| 32 | |
| 33 // Triggers initial display configuration to start. On device this will | |
| 34 // configuration the connected displays. Off device this will create one or | |
| 35 // more fake displays and pretend to configure them. A non-null |delegate| | |
| 36 // must be provided that will receive notifications when displays are added, | |
| 37 // removed or modified. | |
| 38 virtual void Init(PlatformScreenDelegate* delegate) = 0; | |
| 39 | |
| 40 // Handle requests from the platform to close a display. | |
| 41 virtual void RequestCloseDisplay(int64_t display_id) = 0; | |
| 42 | |
| 43 virtual int64_t GetPrimaryDisplayId() const = 0; | |
| 44 | |
| 45 private: | |
| 46 static PlatformScreen* instance_; // Instance is not owned. | |
| 47 | |
| 48 DISALLOW_COPY_AND_ASSIGN(PlatformScreen); | |
| 49 }; | |
| 50 | |
| 51 } // namespace display | |
| 52 | |
| 53 #endif // SERVICES_UI_DISPLAY_PLATFORM_SCREEN_H_ | |
| OLD | NEW |