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

Side by Side Diff: ash/wm/workspace/workspace_layout_manager_keyboard_unittest.cc

Issue 2729363002: chromeos: Move files in //ash/common to //ash, part 3 (Closed)
Patch Set: Created 3 years, 9 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 "ash/wm/workspace/workspace_layout_manager.h" 5 #include "ash/wm/workspace/workspace_layout_manager.h"
6 6
7 #include <string> 7 #include <string>
8 #include <utility> 8 #include <utility>
9 9
10 #include "ash/common/session/session_state_delegate.h"
11 #include "ash/common/shell_observer.h"
12 #include "ash/common/wm_shell.h"
13 #include "ash/common/wm_window.h"
14 #include "ash/public/cpp/shell_window_ids.h" 10 #include "ash/public/cpp/shell_window_ids.h"
15 #include "ash/root_window_controller.h" 11 #include "ash/root_window_controller.h"
12 #include "ash/session/session_state_delegate.h"
16 #include "ash/shelf/shelf_constants.h" 13 #include "ash/shelf/shelf_constants.h"
17 #include "ash/shelf/shelf_layout_manager.h" 14 #include "ash/shelf/shelf_layout_manager.h"
18 #include "ash/shelf/wm_shelf.h" 15 #include "ash/shelf/wm_shelf.h"
19 #include "ash/shell.h" 16 #include "ash/shell.h"
17 #include "ash/shell_observer.h"
20 #include "ash/test/ash_test.h" 18 #include "ash/test/ash_test.h"
21 #include "ash/wm/fullscreen_window_finder.h" 19 #include "ash/wm/fullscreen_window_finder.h"
22 #include "ash/wm/maximize_mode/workspace_backdrop_delegate.h" 20 #include "ash/wm/maximize_mode/workspace_backdrop_delegate.h"
23 #include "ash/wm/window_state.h" 21 #include "ash/wm/window_state.h"
24 #include "ash/wm/wm_event.h" 22 #include "ash/wm/wm_event.h"
25 #include "ash/wm/wm_screen_util.h" 23 #include "ash/wm/wm_screen_util.h"
26 #include "ash/wm/workspace/workspace_window_resizer.h" 24 #include "ash/wm/workspace/workspace_window_resizer.h"
25 #include "ash/wm_shell.h"
26 #include "ash/wm_window.h"
27 #include "base/command_line.h" 27 #include "base/command_line.h"
28 #include "ui/base/ui_base_switches.h" 28 #include "ui/base/ui_base_switches.h"
29 #include "ui/base/ui_base_types.h" 29 #include "ui/base/ui_base_types.h"
30 #include "ui/display/display.h" 30 #include "ui/display/display.h"
31 #include "ui/display/screen.h" 31 #include "ui/display/screen.h"
32 #include "ui/gfx/geometry/insets.h" 32 #include "ui/gfx/geometry/insets.h"
33 #include "ui/keyboard/keyboard_controller.h" 33 #include "ui/keyboard/keyboard_controller.h"
34 #include "ui/keyboard/keyboard_ui.h" 34 #include "ui/keyboard/keyboard_ui.h"
35 #include "ui/keyboard/keyboard_util.h" 35 #include "ui/keyboard/keyboard_util.h"
36 #include "ui/views/widget/widget.h" 36 #include "ui/views/widget/widget.h"
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 changed_window_bounds.Offset(0, -shift); 196 changed_window_bounds.Offset(0, -shift);
197 // Window should be shifted up. 197 // Window should be shifted up.
198 EXPECT_EQ(changed_window_bounds, window->GetBounds()); 198 EXPECT_EQ(changed_window_bounds, window->GetBounds());
199 199
200 kb_controller->HideKeyboard( 200 kb_controller->HideKeyboard(
201 keyboard::KeyboardController::HIDE_REASON_AUTOMATIC); 201 keyboard::KeyboardController::HIDE_REASON_AUTOMATIC);
202 EXPECT_EQ(orig_window_bounds, window->GetBounds()); 202 EXPECT_EQ(orig_window_bounds, window->GetBounds());
203 } 203 }
204 204
205 } // namespace ash 205 } // namespace ash
OLDNEW
« no previous file with comments | « ash/wm/workspace/workspace_layout_manager.cc ('k') | ash/wm/workspace/workspace_layout_manager_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698