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

Side by Side Diff: ash/wm/panels/panel_layout_manager_unittest.cc

Issue 2734733002: Revert "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
« no previous file with comments | « ash/wm/panels/panel_layout_manager.cc ('k') | ash/wm/panels/panel_window_event_handler.cc » ('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 (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/panels/panel_layout_manager.h" 5 #include "ash/wm/panels/panel_layout_manager.h"
6 6
7 #include "ash/common/wm_shell.h"
8 #include "ash/common/wm_window.h"
7 #include "ash/public/cpp/shelf_types.h" 9 #include "ash/public/cpp/shelf_types.h"
8 #include "ash/public/cpp/shell_window_ids.h" 10 #include "ash/public/cpp/shell_window_ids.h"
9 #include "ash/root_window_controller.h" 11 #include "ash/root_window_controller.h"
10 #include "ash/shelf/shelf_button.h" 12 #include "ash/shelf/shelf_button.h"
11 #include "ash/shelf/shelf_layout_manager.h" 13 #include "ash/shelf/shelf_layout_manager.h"
12 #include "ash/shelf/shelf_model.h" 14 #include "ash/shelf/shelf_model.h"
13 #include "ash/shelf/shelf_view.h" 15 #include "ash/shelf/shelf_view.h"
14 #include "ash/shelf/shelf_widget.h" 16 #include "ash/shelf/shelf_widget.h"
15 #include "ash/shelf/wm_shelf.h" 17 #include "ash/shelf/wm_shelf.h"
16 #include "ash/shell.h" 18 #include "ash/shell.h"
17 #include "ash/system/web_notification/web_notification_tray.h" 19 #include "ash/system/web_notification/web_notification_tray.h"
18 #include "ash/test/ash_test_base.h" 20 #include "ash/test/ash_test_base.h"
19 #include "ash/test/shelf_view_test_api.h" 21 #include "ash/test/shelf_view_test_api.h"
20 #include "ash/test/test_shelf_delegate.h" 22 #include "ash/test/test_shelf_delegate.h"
21 #include "ash/wm/mru_window_tracker.h" 23 #include "ash/wm/mru_window_tracker.h"
22 #include "ash/wm/window_properties.h" 24 #include "ash/wm/window_properties.h"
23 #include "ash/wm/window_state.h" 25 #include "ash/wm/window_state.h"
24 #include "ash/wm/window_state_aura.h" 26 #include "ash/wm/window_state_aura.h"
25 #include "ash/wm/window_util.h" 27 #include "ash/wm/window_util.h"
26 #include "ash/wm_shell.h"
27 #include "ash/wm_window.h"
28 #include "base/command_line.h" 28 #include "base/command_line.h"
29 #include "base/compiler_specific.h" 29 #include "base/compiler_specific.h"
30 #include "base/i18n/rtl.h" 30 #include "base/i18n/rtl.h"
31 #include "base/run_loop.h" 31 #include "base/run_loop.h"
32 #include "base/strings/string_number_conversions.h" 32 #include "base/strings/string_number_conversions.h"
33 #include "ui/aura/client/aura_constants.h" 33 #include "ui/aura/client/aura_constants.h"
34 #include "ui/aura/test/test_windows.h" 34 #include "ui/aura/test/test_windows.h"
35 #include "ui/aura/window.h" 35 #include "ui/aura/window.h"
36 #include "ui/aura/window_event_dispatcher.h" 36 #include "ui/aura/window_event_dispatcher.h"
37 #include "ui/display/manager/display_manager.h" 37 #include "ui/display/manager/display_manager.h"
(...skipping 849 matching lines...) Expand 10 before | Expand all | Expand 10 after
887 touch.set_location(gfx::Point(bounds.x() - 1, bounds.y() + 5)); 887 touch.set_location(gfx::Point(bounds.x() - 1, bounds.y() + 5));
888 target = targeter->FindTargetForEvent(root, &touch); 888 target = targeter->FindTargetForEvent(root, &touch);
889 EXPECT_NE(w.get(), target); 889 EXPECT_NE(w.get(), target);
890 } 890 }
891 891
892 INSTANTIATE_TEST_CASE_P(LtrRtl, 892 INSTANTIATE_TEST_CASE_P(LtrRtl,
893 PanelLayoutManagerTextDirectionTest, 893 PanelLayoutManagerTextDirectionTest,
894 testing::Bool()); 894 testing::Bool());
895 895
896 } // namespace ash 896 } // namespace ash
OLDNEW
« no previous file with comments | « ash/wm/panels/panel_layout_manager.cc ('k') | ash/wm/panels/panel_window_event_handler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698