Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(58)

Side by Side Diff: services/ui/ws/window_tree_client_unittest.cc

Issue 2655463009: aura-mus: Implement DesktopWindowTreeHostMus::StackAbove(). (Closed)
Patch Set: Add comment. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « services/ui/ws/window_tree.cc ('k') | ui/aura/mus/window_tree_client.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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/memory/ptr_util.h" 10 #include "base/memory/ptr_util.h"
(...skipping 458 matching lines...) Expand 10 before | Expand all | Expand 10 after
469 NOTIMPLEMENTED(); 469 NOTIMPLEMENTED();
470 } 470 }
471 void WmPerformMoveLoop(uint32_t change_id, 471 void WmPerformMoveLoop(uint32_t change_id,
472 uint32_t window_id, 472 uint32_t window_id,
473 mojom::MoveLoopSource source, 473 mojom::MoveLoopSource source,
474 const gfx::Point& cursor_location) override { 474 const gfx::Point& cursor_location) override {
475 NOTIMPLEMENTED(); 475 NOTIMPLEMENTED();
476 } 476 }
477 void WmCancelMoveLoop(uint32_t window_id) override { NOTIMPLEMENTED(); } 477 void WmCancelMoveLoop(uint32_t window_id) override { NOTIMPLEMENTED(); }
478 void WmDeactivateWindow(uint32_t window_id) override { NOTIMPLEMENTED(); } 478 void WmDeactivateWindow(uint32_t window_id) override { NOTIMPLEMENTED(); }
479 void WmStackAbove(uint32_t change_id, uint32_t above_id,
480 uint32_t below_id) override {
481 NOTIMPLEMENTED();
482 }
479 void WmStackAtTop(uint32_t change_id, uint32_t window_id) override { 483 void WmStackAtTop(uint32_t change_id, uint32_t window_id) override {
480 NOTIMPLEMENTED(); 484 NOTIMPLEMENTED();
481 } 485 }
482 void OnAccelerator(uint32_t ack_id, 486 void OnAccelerator(uint32_t ack_id,
483 uint32_t accelerator_id, 487 uint32_t accelerator_id,
484 std::unique_ptr<ui::Event> event) override { 488 std::unique_ptr<ui::Event> event) override {
485 NOTIMPLEMENTED(); 489 NOTIMPLEMENTED();
486 } 490 }
487 491
488 TestChangeTracker tracker_; 492 TestChangeTracker tracker_;
(...skipping 1729 matching lines...) Expand 10 before | Expand all | Expand 10 after
2218 2222
2219 // TODO(sky): make sure coverage of what was 2223 // TODO(sky): make sure coverage of what was
2220 // WindowManagerTest.SecondEmbedRoot_InitService and 2224 // WindowManagerTest.SecondEmbedRoot_InitService and
2221 // WindowManagerTest.MultipleEmbedRootsBeforeWTHReady gets added to window 2225 // WindowManagerTest.MultipleEmbedRootsBeforeWTHReady gets added to window
2222 // manager 2226 // manager
2223 // tests. 2227 // tests.
2224 2228
2225 } // namespace test 2229 } // namespace test
2226 } // namespace ws 2230 } // namespace ws
2227 } // namespace ui 2231 } // namespace ui
OLDNEW
« no previous file with comments | « services/ui/ws/window_tree.cc ('k') | ui/aura/mus/window_tree_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698