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

Side by Side Diff: content/renderer/mus/renderer_window_tree_client.cc

Issue 2685883003: chromeos: converts observed pointer events to DIPs (Closed)
Patch Set: merge Created 3 years, 10 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
OLDNEW
1 // Copyright 2017 The Chromium Authors. All rights reserved. 1 // Copyright 2017 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 #include "content/renderer/mus/renderer_window_tree_client.h" 5 #include "content/renderer/mus/renderer_window_tree_client.h"
6 6
7 #include <map> 7 #include <map>
8 8
9 #include "base/lazy_instance.h" 9 #include "base/lazy_instance.h"
10 #include "services/ui/public/cpp/window_compositor_frame_sink.h" 10 #include "services/ui/public/cpp/window_compositor_frame_sink.h"
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 bool drawn) {} 158 bool drawn) {}
159 159
160 void RendererWindowTreeClient::OnWindowSharedPropertyChanged( 160 void RendererWindowTreeClient::OnWindowSharedPropertyChanged(
161 ui::Id window_id, 161 ui::Id window_id,
162 const std::string& name, 162 const std::string& name,
163 const base::Optional<std::vector<uint8_t>>& new_data) {} 163 const base::Optional<std::vector<uint8_t>>& new_data) {}
164 164
165 void RendererWindowTreeClient::OnWindowInputEvent( 165 void RendererWindowTreeClient::OnWindowInputEvent(
166 uint32_t event_id, 166 uint32_t event_id,
167 ui::Id window_id, 167 ui::Id window_id,
168 int64_t display_id,
168 std::unique_ptr<ui::Event> event, 169 std::unique_ptr<ui::Event> event,
169 bool matches_pointer_watcher) { 170 bool matches_pointer_watcher) {
170 NOTREACHED(); 171 NOTREACHED();
171 } 172 }
172 173
173 void RendererWindowTreeClient::OnPointerEventObserved( 174 void RendererWindowTreeClient::OnPointerEventObserved(
174 std::unique_ptr<ui::Event> event, 175 std::unique_ptr<ui::Event> event,
175 uint32_t window_id) { 176 uint32_t window_id,
177 int64_t display_id) {
176 NOTREACHED(); 178 NOTREACHED();
177 } 179 }
178 180
179 void RendererWindowTreeClient::OnWindowFocused(ui::Id focused_window_id) {} 181 void RendererWindowTreeClient::OnWindowFocused(ui::Id focused_window_id) {}
180 182
181 void RendererWindowTreeClient::OnWindowPredefinedCursorChanged( 183 void RendererWindowTreeClient::OnWindowPredefinedCursorChanged(
182 ui::Id window_id, 184 ui::Id window_id,
183 ui::mojom::Cursor cursor) {} 185 ui::mojom::Cursor cursor) {}
184 186
185 void RendererWindowTreeClient::OnWindowSurfaceChanged( 187 void RendererWindowTreeClient::OnWindowSurfaceChanged(
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
224 bool success) {} 226 bool success) {}
225 227
226 void RendererWindowTreeClient::RequestClose(uint32_t window_id) {} 228 void RendererWindowTreeClient::RequestClose(uint32_t window_id) {}
227 229
228 void RendererWindowTreeClient::GetWindowManager( 230 void RendererWindowTreeClient::GetWindowManager(
229 mojo::AssociatedInterfaceRequest<ui::mojom::WindowManager> internal) { 231 mojo::AssociatedInterfaceRequest<ui::mojom::WindowManager> internal) {
230 NOTREACHED(); 232 NOTREACHED();
231 } 233 }
232 234
233 } // namespace content 235 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/mus/renderer_window_tree_client.h ('k') | services/ui/public/interfaces/window_tree.mojom » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698