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

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

Issue 2274353003: Add PlatformScreenDelegate and start implementation. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: More fixes for comments. Created 4 years, 3 months 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') | services/ui/ws/window_tree_host_factory.h » ('j') | 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 29 matching lines...) Expand all
40 // been set. 40 // been set.
41 virtual void CreateDefaultDisplays() = 0; 41 virtual void CreateDefaultDisplays() = 0;
42 42
43 // Called once when the AcceleratedWidget of a Display is available. 43 // Called once when the AcceleratedWidget of a Display is available.
44 virtual void OnFirstDisplayReady(); 44 virtual void OnFirstDisplayReady();
45 45
46 virtual void OnNoMoreDisplays() = 0; 46 virtual void OnNoMoreDisplays() = 0;
47 47
48 virtual bool IsTestConfig() const = 0; 48 virtual bool IsTestConfig() const = 0;
49 49
50 // Called when touchscreen coordinate transforms should be updated. For
51 // example when displays or touch input devices are added/removed.
52 virtual void UpdateTouchTransforms() = 0;
53
50 // Creates a WindowTreeBinding. Default implementation returns null, which 54 // Creates a WindowTreeBinding. Default implementation returns null, which
51 // creates DefaultBinding. 55 // creates DefaultBinding.
52 virtual std::unique_ptr<WindowTreeBinding> CreateWindowTreeBinding( 56 virtual std::unique_ptr<WindowTreeBinding> CreateWindowTreeBinding(
53 BindingType type, 57 BindingType type,
54 ws::WindowServer* window_server, 58 ws::WindowServer* window_server,
55 ws::WindowTree* tree, 59 ws::WindowTree* tree,
56 mojom::WindowTreeRequest* tree_request, 60 mojom::WindowTreeRequest* tree_request,
57 mojom::WindowTreeClientPtr* client); 61 mojom::WindowTreeClientPtr* client);
58 62
59 protected: 63 protected:
60 virtual ~WindowServerDelegate() {} 64 virtual ~WindowServerDelegate() {}
61 }; 65 };
62 66
63 } // namespace ws 67 } // namespace ws
64 } // namespace ui 68 } // namespace ui
65 69
66 #endif // SERVICES_UI_WS_WINDOW_SERVER_DELEGATE_H_ 70 #endif // SERVICES_UI_WS_WINDOW_SERVER_DELEGATE_H_
OLDNEW
« no previous file with comments | « services/ui/ws/window_server.cc ('k') | services/ui/ws/window_tree_host_factory.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698