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

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

Issue 2830703003: [views-mus] Support custom cursors. (Closed)
Patch Set: fix cast_shell_linux Created 3 years, 7 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/command_line.h" 9 #include "base/command_line.h"
10 #include "base/lazy_instance.h" 10 #include "base/lazy_instance.h"
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after
235 235
236 void RendererWindowTreeClient::OnPointerEventObserved( 236 void RendererWindowTreeClient::OnPointerEventObserved(
237 std::unique_ptr<ui::Event> event, 237 std::unique_ptr<ui::Event> event,
238 uint32_t window_id, 238 uint32_t window_id,
239 int64_t display_id) { 239 int64_t display_id) {
240 NOTREACHED(); 240 NOTREACHED();
241 } 241 }
242 242
243 void RendererWindowTreeClient::OnWindowFocused(ui::Id focused_window_id) {} 243 void RendererWindowTreeClient::OnWindowFocused(ui::Id focused_window_id) {}
244 244
245 void RendererWindowTreeClient::OnWindowPredefinedCursorChanged( 245 void RendererWindowTreeClient::OnWindowCursorChanged(ui::Id window_id,
246 ui::Id window_id, 246 ui::CursorData cursor) {}
247 ui::mojom::CursorType cursor) {}
248 247
249 void RendererWindowTreeClient::OnWindowSurfaceChanged( 248 void RendererWindowTreeClient::OnWindowSurfaceChanged(
250 ui::Id window_id, 249 ui::Id window_id,
251 const cc::SurfaceInfo& surface_info) { 250 const cc::SurfaceInfo& surface_info) {
252 NOTIMPLEMENTED(); 251 NOTIMPLEMENTED();
253 } 252 }
254 253
255 void RendererWindowTreeClient::OnDragDropStart( 254 void RendererWindowTreeClient::OnDragDropStart(
256 const std::unordered_map<std::string, std::vector<uint8_t>>& mime_data) {} 255 const std::unordered_map<std::string, std::vector<uint8_t>>& mime_data) {}
257 256
(...skipping 30 matching lines...) Expand all
288 bool success) {} 287 bool success) {}
289 288
290 void RendererWindowTreeClient::RequestClose(uint32_t window_id) {} 289 void RendererWindowTreeClient::RequestClose(uint32_t window_id) {}
291 290
292 void RendererWindowTreeClient::GetWindowManager( 291 void RendererWindowTreeClient::GetWindowManager(
293 mojo::AssociatedInterfaceRequest<ui::mojom::WindowManager> internal) { 292 mojo::AssociatedInterfaceRequest<ui::mojom::WindowManager> internal) {
294 NOTREACHED(); 293 NOTREACHED();
295 } 294 }
296 295
297 } // namespace content 296 } // namespace content
OLDNEW
« no previous file with comments | « content/renderer/mus/renderer_window_tree_client.h ('k') | mash/simple_wm/move_event_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698