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

Side by Side Diff: services/ui/display/platform_screen.h

Issue 2503923003: Demonstrate external-window-mode in mus-demo (Closed)
Patch Set: Refactor, revert ozone_switches Created 4 years, 1 month 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 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_PLATFORM_SCREEN_H_ 5 #ifndef SERVICES_UI_DISPLAY_PLATFORM_SCREEN_H_
6 #define SERVICES_UI_DISPLAY_PLATFORM_SCREEN_H_ 6 #define SERVICES_UI_DISPLAY_PLATFORM_SCREEN_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
11 #include "services/ui/display/platform_screen_delegate.h" 11 #include "services/ui/display/platform_screen_delegate.h"
12 12
13 namespace service_manager { 13 namespace service_manager {
14 class InterfaceRegistry; 14 class InterfaceRegistry;
15 } 15 }
16 16
17 namespace display { 17 namespace display {
18 18
19 // PlatformScreen provides the necessary functionality to configure all 19 // PlatformScreen provides the necessary functionality to configure all
20 // attached physical displays. 20 // attached physical displays.
21 class PlatformScreen { 21 class PlatformScreen {
22 public: 22 public:
23 enum WindowMode {
24 WINDOW_MODE_EXTERNAL,
25 WINDOW_MODE_INTERNAL,
26 };
27
23 PlatformScreen(); 28 PlatformScreen();
24 virtual ~PlatformScreen(); 29 virtual ~PlatformScreen();
25 30
26 // Creates a singleton PlatformScreen instance. 31 // Creates a singleton PlatformScreen instance.
27 static std::unique_ptr<PlatformScreen> Create(); 32 static std::unique_ptr<PlatformScreen> Create();
28 static PlatformScreen* GetInstance(); 33 static PlatformScreen* GetInstance();
29 34
30 // Registers Mojo interfaces provided. 35 // Registers Mojo interfaces provided.
31 virtual void AddInterfaces(service_manager::InterfaceRegistry* registry) = 0; 36 virtual void AddInterfaces(service_manager::InterfaceRegistry* registry) = 0;
32 37
33 // Triggers initial display configuration to start. On device this will 38 // Triggers initial display configuration to start. On device this will
34 // configuration the connected displays. Off device this will create one or 39 // configuration the connected displays. Off device this will create one or
rjkroege 2016/11/24 00:58:28 maybe fix the grammar while you're here. And the c
Tom (Use chromium acct) 2016/11/28 20:47:37 Done.
35 // more fake displays and pretend to configure them. A non-null |delegate| 40 // more fake displays and pretend to configure them. In external window mode,
36 // must be provided that will receive notifications when displays are added, 41 // no initial display will be created. A non-null |delegate| must be provided
37 // removed or modified. 42 // that will receive notifications when displays are added, removed or
38 virtual void Init(PlatformScreenDelegate* delegate) = 0; 43 // modified.
44 virtual void Init(PlatformScreenDelegate* delegate,
45 WindowMode window_mode = WINDOW_MODE_INTERNAL) = 0;
39 46
40 // Handle requests from the platform to close a display. 47 // Handle requests from the platform to close a display.
41 virtual void RequestCloseDisplay(int64_t display_id) = 0; 48 virtual void RequestCloseDisplay(int64_t display_id) = 0;
42 49
43 virtual int64_t GetPrimaryDisplayId() const = 0; 50 virtual int64_t GetPrimaryDisplayId() const = 0;
44 51
45 private: 52 private:
46 static PlatformScreen* instance_; // Instance is not owned. 53 static PlatformScreen* instance_; // Instance is not owned.
47 54
48 DISALLOW_COPY_AND_ASSIGN(PlatformScreen); 55 DISALLOW_COPY_AND_ASSIGN(PlatformScreen);
49 }; 56 };
50 57
51 } // namespace display 58 } // namespace display
52 59
53 #endif // SERVICES_UI_DISPLAY_PLATFORM_SCREEN_H_ 60 #endif // SERVICES_UI_DISPLAY_PLATFORM_SCREEN_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698