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