| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 <stddef.h> | 5 #include <stddef.h> |
| 6 #include <stdint.h> | 6 #include <stdint.h> |
| 7 | 7 |
| 8 #include "base/bind.h" | 8 #include "base/bind.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "base/message_loop/message_loop.h" | 10 #include "base/message_loop/message_loop.h" |
| (...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 370 void OnWindowPredefinedCursorChanged(uint32_t window_id, | 370 void OnWindowPredefinedCursorChanged(uint32_t window_id, |
| 371 mojom::Cursor cursor_id) override { | 371 mojom::Cursor cursor_id) override { |
| 372 tracker_.OnWindowPredefinedCursorChanged(window_id, cursor_id); | 372 tracker_.OnWindowPredefinedCursorChanged(window_id, cursor_id); |
| 373 } | 373 } |
| 374 | 374 |
| 375 void OnDragDropStart( | 375 void OnDragDropStart( |
| 376 mojo::Map<mojo::String, mojo::Array<uint8_t>> drag_data) override { | 376 mojo::Map<mojo::String, mojo::Array<uint8_t>> drag_data) override { |
| 377 NOTIMPLEMENTED(); | 377 NOTIMPLEMENTED(); |
| 378 } | 378 } |
| 379 | 379 |
| 380 void OnWindowSurfaceCreated(Id window_id, |
| 381 const cc::SurfaceId& surface_id, |
| 382 const cc::SurfaceSequence& surface_sequence, |
| 383 const gfx::Size& frame_size, |
| 384 float device_scale_factor) override {} |
| 385 |
| 380 void OnDragEnter(uint32_t window, | 386 void OnDragEnter(uint32_t window, |
| 381 uint32_t key_state, | 387 uint32_t key_state, |
| 382 const gfx::Point& position, | 388 const gfx::Point& position, |
| 383 uint32_t effect_bitmask, | 389 uint32_t effect_bitmask, |
| 384 const OnDragEnterCallback& callback) override { | 390 const OnDragEnterCallback& callback) override { |
| 385 NOTIMPLEMENTED(); | 391 NOTIMPLEMENTED(); |
| 386 } | 392 } |
| 387 void OnDragOver(uint32_t window, | 393 void OnDragOver(uint32_t window, |
| 388 uint32_t key_state, | 394 uint32_t key_state, |
| 389 const gfx::Point& position, | 395 const gfx::Point& position, |
| (...skipping 1728 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2118 | 2124 |
| 2119 // TODO(sky): make sure coverage of what was | 2125 // TODO(sky): make sure coverage of what was |
| 2120 // WindowManagerTest.SecondEmbedRoot_InitService and | 2126 // WindowManagerTest.SecondEmbedRoot_InitService and |
| 2121 // WindowManagerTest.MultipleEmbedRootsBeforeWTHReady gets added to window | 2127 // WindowManagerTest.MultipleEmbedRootsBeforeWTHReady gets added to window |
| 2122 // manager | 2128 // manager |
| 2123 // tests. | 2129 // tests. |
| 2124 | 2130 |
| 2125 } // namespace test | 2131 } // namespace test |
| 2126 } // namespace ws | 2132 } // namespace ws |
| 2127 } // namespace ui | 2133 } // namespace ui |
| OLD | NEW |