| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |