OLD | NEW |
---|---|
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/test/ash_test_base.h" | 5 #include "ash/test/ash_test_base.h" |
6 | 6 |
7 #include <string> | 7 #include <string> |
8 #include <vector> | 8 #include <vector> |
9 | 9 |
10 #include "ash/common/ash_switches.h" | 10 #include "ash/common/ash_switches.h" |
(...skipping 20 matching lines...) Expand all Loading... | |
31 #include "ui/aura/window_delegate.h" | 31 #include "ui/aura/window_delegate.h" |
32 #include "ui/aura/window_tree_host.h" | 32 #include "ui/aura/window_tree_host.h" |
33 #include "ui/base/ime/input_method_initializer.h" | 33 #include "ui/base/ime/input_method_initializer.h" |
34 #include "ui/display/display.h" | 34 #include "ui/display/display.h" |
35 #include "ui/display/screen.h" | 35 #include "ui/display/screen.h" |
36 #include "ui/events/gesture_detection/gesture_configuration.h" | 36 #include "ui/events/gesture_detection/gesture_configuration.h" |
37 #include "ui/gfx/geometry/point.h" | 37 #include "ui/gfx/geometry/point.h" |
38 #include "ui/wm/core/coordinate_conversion.h" | 38 #include "ui/wm/core/coordinate_conversion.h" |
39 | 39 |
40 #if defined(OS_CHROMEOS) | 40 #if defined(OS_CHROMEOS) |
41 #include "ash/system/chromeos/tray_display.h" | 41 #include "ash/system/chromeos/screen_layout_observer.h" |
James Cook
2016/08/05 17:00:25
Is this still used?
yiyix
2016/08/13 05:28:52
You are right.
| |
42 #endif | 42 #endif |
43 | 43 |
44 #if defined(OS_WIN) | 44 #if defined(OS_WIN) |
45 #include "base/win/windows_version.h" | 45 #include "base/win/windows_version.h" |
46 #include "ui/platform_window/win/win_window.h" | 46 #include "ui/platform_window/win/win_window.h" |
47 #endif | 47 #endif |
48 | 48 |
49 #if defined(USE_X11) | 49 #if defined(USE_X11) |
50 #include "ui/gfx/x/x11_connection.h" // nogncheck | 50 #include "ui/gfx/x/x11_connection.h" // nogncheck |
51 #endif | 51 #endif |
(...skipping 326 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
378 | 378 |
379 void AshTestBase::DisableIME() { | 379 void AshTestBase::DisableIME() { |
380 Shell::GetInstance()->RemovePreTargetHandler( | 380 Shell::GetInstance()->RemovePreTargetHandler( |
381 Shell::GetInstance() | 381 Shell::GetInstance() |
382 ->window_tree_host_manager() | 382 ->window_tree_host_manager() |
383 ->input_method_event_handler()); | 383 ->input_method_event_handler()); |
384 } | 384 } |
385 | 385 |
386 } // namespace test | 386 } // namespace test |
387 } // namespace ash | 387 } // namespace ash |
OLD | NEW |