| 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 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 407 void WmCreateTopLevelWindow( | 407 void WmCreateTopLevelWindow( |
| 408 uint32_t change_id, | 408 uint32_t change_id, |
| 409 ClientSpecificId requesting_client_id, | 409 ClientSpecificId requesting_client_id, |
| 410 mojo::Map<mojo::String, mojo::Array<uint8_t>> properties) override { | 410 mojo::Map<mojo::String, mojo::Array<uint8_t>> properties) override { |
| 411 NOTIMPLEMENTED(); | 411 NOTIMPLEMENTED(); |
| 412 } | 412 } |
| 413 void WmClientJankinessChanged(ClientSpecificId client_id, | 413 void WmClientJankinessChanged(ClientSpecificId client_id, |
| 414 bool janky) override { | 414 bool janky) override { |
| 415 NOTIMPLEMENTED(); | 415 NOTIMPLEMENTED(); |
| 416 } | 416 } |
| 417 void WmPerformMoveLoop(uint32_t change_id, |
| 418 uint32_t window_id, |
| 419 mojom::MoveLoopSource source, |
| 420 const gfx::Point& cursor_location) override { |
| 421 NOTIMPLEMENTED(); |
| 422 } |
| 423 void WmCancelMoveLoop(uint32_t window_id) override { NOTIMPLEMENTED(); } |
| 417 void OnAccelerator(uint32_t id, std::unique_ptr<ui::Event> event) override { | 424 void OnAccelerator(uint32_t id, std::unique_ptr<ui::Event> event) override { |
| 418 NOTIMPLEMENTED(); | 425 NOTIMPLEMENTED(); |
| 419 } | 426 } |
| 420 | 427 |
| 421 TestChangeTracker tracker_; | 428 TestChangeTracker tracker_; |
| 422 | 429 |
| 423 mojom::WindowTreePtr tree_; | 430 mojom::WindowTreePtr tree_; |
| 424 | 431 |
| 425 // If non-null we're waiting for OnEmbed() using this RunLoop. | 432 // If non-null we're waiting for OnEmbed() using this RunLoop. |
| 426 std::unique_ptr<base::RunLoop> embed_run_loop_; | 433 std::unique_ptr<base::RunLoop> embed_run_loop_; |
| (...skipping 1606 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2033 | 2040 |
| 2034 // TODO(sky): make sure coverage of what was | 2041 // TODO(sky): make sure coverage of what was |
| 2035 // WindowManagerTest.SecondEmbedRoot_InitService and | 2042 // WindowManagerTest.SecondEmbedRoot_InitService and |
| 2036 // WindowManagerTest.MultipleEmbedRootsBeforeWTHReady gets added to window | 2043 // WindowManagerTest.MultipleEmbedRootsBeforeWTHReady gets added to window |
| 2037 // manager | 2044 // manager |
| 2038 // tests. | 2045 // tests. |
| 2039 | 2046 |
| 2040 } // namespace test | 2047 } // namespace test |
| 2041 } // namespace ws | 2048 } // namespace ws |
| 2042 } // namespace ui | 2049 } // namespace ui |
| OLD | NEW |