| 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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 230 std::unique_ptr<ui::Event> event, | 230 std::unique_ptr<ui::Event> event, |
| 231 uint32_t window_id, | 231 uint32_t window_id, |
| 232 int64_t display_id) { | 232 int64_t display_id) { |
| 233 NOTREACHED(); | 233 NOTREACHED(); |
| 234 } | 234 } |
| 235 | 235 |
| 236 void RendererWindowTreeClient::OnWindowFocused(ui::Id focused_window_id) {} | 236 void RendererWindowTreeClient::OnWindowFocused(ui::Id focused_window_id) {} |
| 237 | 237 |
| 238 void RendererWindowTreeClient::OnWindowPredefinedCursorChanged( | 238 void RendererWindowTreeClient::OnWindowPredefinedCursorChanged( |
| 239 ui::Id window_id, | 239 ui::Id window_id, |
| 240 ui::mojom::Cursor cursor) {} | 240 ui::mojom::CursorType cursor) {} |
| 241 | 241 |
| 242 void RendererWindowTreeClient::OnWindowSurfaceChanged( | 242 void RendererWindowTreeClient::OnWindowSurfaceChanged( |
| 243 ui::Id window_id, | 243 ui::Id window_id, |
| 244 const cc::SurfaceInfo& surface_info) { | 244 const cc::SurfaceInfo& surface_info) { |
| 245 NOTIMPLEMENTED(); | 245 NOTIMPLEMENTED(); |
| 246 } | 246 } |
| 247 | 247 |
| 248 void RendererWindowTreeClient::OnDragDropStart( | 248 void RendererWindowTreeClient::OnDragDropStart( |
| 249 const std::unordered_map<std::string, std::vector<uint8_t>>& mime_data) {} | 249 const std::unordered_map<std::string, std::vector<uint8_t>>& mime_data) {} |
| 250 | 250 |
| (...skipping 30 matching lines...) Expand all Loading... |
| 281 bool success) {} | 281 bool success) {} |
| 282 | 282 |
| 283 void RendererWindowTreeClient::RequestClose(uint32_t window_id) {} | 283 void RendererWindowTreeClient::RequestClose(uint32_t window_id) {} |
| 284 | 284 |
| 285 void RendererWindowTreeClient::GetWindowManager( | 285 void RendererWindowTreeClient::GetWindowManager( |
| 286 mojo::AssociatedInterfaceRequest<ui::mojom::WindowManager> internal) { | 286 mojo::AssociatedInterfaceRequest<ui::mojom::WindowManager> internal) { |
| 287 NOTREACHED(); | 287 NOTREACHED(); |
| 288 } | 288 } |
| 289 | 289 |
| 290 } // namespace content | 290 } // namespace content |
| OLD | NEW |