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/magnifier/magnification_controller.h" | 5 #include "ash/magnifier/magnification_controller.h" |
6 | 6 |
7 #include "ash/accelerators/accelerator_controller.h" | 7 #include "ash/accelerators/accelerator_controller.h" |
8 #include "ash/accessibility_delegate.h" | 8 #include "ash/accessibility_delegate.h" |
9 #include "ash/ash_switches.h" | 9 #include "ash/ash_switches.h" |
10 #include "ash/display/root_window_transformers.h" | 10 #include "ash/display/root_window_transformers.h" |
11 #include "ash/host/ash_window_tree_host.h" | 11 #include "ash/host/ash_window_tree_host.h" |
12 #include "ash/host/root_window_transformer.h" | 12 #include "ash/host/root_window_transformer.h" |
13 #include "ash/root_window_controller.h" | 13 #include "ash/root_window_controller.h" |
14 #include "ash/shell.h" | 14 #include "ash/shell.h" |
15 #include "ash/system/tray/system_tray_delegate.h" | 15 #include "ash/system/tray/system_tray_delegate.h" |
16 #include "base/command_line.h" | 16 #include "base/command_line.h" |
17 #include "base/synchronization/waitable_event.h" | 17 #include "base/synchronization/waitable_event.h" |
18 #include "ui/aura/client/cursor_client.h" | 18 #include "ui/aura/client/cursor_client.h" |
19 #include "ui/aura/window.h" | 19 #include "ui/aura/window.h" |
20 #include "ui/aura/window_property.h" | 20 #include "ui/aura/window_property.h" |
21 #include "ui/aura/window_tree_host.h" | 21 #include "ui/aura/window_tree_host.h" |
22 #include "ui/compositor/dip_util.h" | 22 #include "ui/compositor/dip_util.h" |
23 #include "ui/compositor/layer.h" | 23 #include "ui/compositor/layer.h" |
24 #include "ui/compositor/layer_animation_observer.h" | 24 #include "ui/compositor/layer_animation_observer.h" |
25 #include "ui/compositor/scoped_layer_animation_settings.h" | 25 #include "ui/compositor/scoped_layer_animation_settings.h" |
26 #include "ui/events/event.h" | 26 #include "ui/events/event.h" |
27 #include "ui/events/event_handler.h" | 27 #include "ui/events/event_handler.h" |
28 #include "ui/gfx/point3_f.h" | 28 #include "ui/gfx/geometry/point3_f.h" |
| 29 #include "ui/gfx/geometry/point_f.h" |
29 #include "ui/gfx/point_conversions.h" | 30 #include "ui/gfx/point_conversions.h" |
30 #include "ui/gfx/point_f.h" | |
31 #include "ui/gfx/rect_conversions.h" | 31 #include "ui/gfx/rect_conversions.h" |
32 #include "ui/gfx/screen.h" | 32 #include "ui/gfx/screen.h" |
33 #include "ui/wm/core/compound_event_filter.h" | 33 #include "ui/wm/core/compound_event_filter.h" |
34 | 34 |
35 namespace { | 35 namespace { |
36 | 36 |
37 const float kMaxMagnifiedScale = 4.0f; | 37 const float kMaxMagnifiedScale = 4.0f; |
38 const float kMaxMagnifiedScaleThreshold = 4.0f; | 38 const float kMaxMagnifiedScaleThreshold = 4.0f; |
39 const float kMinMagnifiedScaleThreshold = 1.1f; | 39 const float kMinMagnifiedScaleThreshold = 1.1f; |
40 const float kNonMagnifiedScale = 1.0f; | 40 const float kNonMagnifiedScale = 1.0f; |
(...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
599 | 599 |
600 //////////////////////////////////////////////////////////////////////////////// | 600 //////////////////////////////////////////////////////////////////////////////// |
601 // MagnificationController: | 601 // MagnificationController: |
602 | 602 |
603 // static | 603 // static |
604 MagnificationController* MagnificationController::CreateInstance() { | 604 MagnificationController* MagnificationController::CreateInstance() { |
605 return new MagnificationControllerImpl(); | 605 return new MagnificationControllerImpl(); |
606 } | 606 } |
607 | 607 |
608 } // namespace ash | 608 } // namespace ash |
OLD | NEW |