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

Side by Side Diff: services/ui/ws/window_server_delegate.h

Issue 2498073003: Fix GPU service and display initialization race. (Closed)
Patch Set: Make function abstract. 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
« no previous file with comments | « services/ui/ws/window_server.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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_WS_WINDOW_SERVER_DELEGATE_H_ 5 #ifndef SERVICES_UI_WS_WINDOW_SERVER_DELEGATE_H_
6 #define SERVICES_UI_WS_WINDOW_SERVER_DELEGATE_H_ 6 #define SERVICES_UI_WS_WINDOW_SERVER_DELEGATE_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include <memory> 10 #include <memory>
(...skipping 18 matching lines...) Expand all
29 class WindowTree; 29 class WindowTree;
30 class WindowTreeBinding; 30 class WindowTreeBinding;
31 31
32 class WindowServerDelegate { 32 class WindowServerDelegate {
33 public: 33 public:
34 enum BindingType { 34 enum BindingType {
35 EMBED, 35 EMBED,
36 WINDOW_MANAGER, 36 WINDOW_MANAGER,
37 }; 37 };
38 38
39 // WindowServer signal that display initialization can start.
40 virtual void StartDisplayInit() = 0;
41
39 // Called once when the AcceleratedWidget of a Display is available. 42 // Called once when the AcceleratedWidget of a Display is available.
40 virtual void OnFirstDisplayReady(); 43 virtual void OnFirstDisplayReady();
41 44
42 virtual void OnNoMoreDisplays() = 0; 45 virtual void OnNoMoreDisplays() = 0;
43 46
44 virtual bool IsTestConfig() const = 0; 47 virtual bool IsTestConfig() const = 0;
45 48
46 // Called when touchscreen coordinate transforms should be updated. For 49 // Called when touchscreen coordinate transforms should be updated. For
47 // example when displays or touch input devices are added/removed. 50 // example when displays or touch input devices are added/removed.
48 virtual void UpdateTouchTransforms() = 0; 51 virtual void UpdateTouchTransforms() = 0;
49 52
50 // Creates a WindowTreeBinding. Default implementation returns null, which 53 // Creates a WindowTreeBinding. Default implementation returns null, which
51 // creates DefaultBinding. 54 // creates DefaultBinding.
52 virtual std::unique_ptr<WindowTreeBinding> CreateWindowTreeBinding( 55 virtual std::unique_ptr<WindowTreeBinding> CreateWindowTreeBinding(
53 BindingType type, 56 BindingType type,
54 ws::WindowServer* window_server, 57 ws::WindowServer* window_server,
55 ws::WindowTree* tree, 58 ws::WindowTree* tree,
56 mojom::WindowTreeRequest* tree_request, 59 mojom::WindowTreeRequest* tree_request,
57 mojom::WindowTreeClientPtr* client); 60 mojom::WindowTreeClientPtr* client);
58 61
59 protected: 62 protected:
60 virtual ~WindowServerDelegate() {} 63 virtual ~WindowServerDelegate() {}
61 }; 64 };
62 65
63 } // namespace ws 66 } // namespace ws
64 } // namespace ui 67 } // namespace ui
65 68
66 #endif // SERVICES_UI_WS_WINDOW_SERVER_DELEGATE_H_ 69 #endif // SERVICES_UI_WS_WINDOW_SERVER_DELEGATE_H_
OLDNEW
« no previous file with comments | « services/ui/ws/window_server.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698