OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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/display/root_window_transformers.h" | 5 #include "ash/display/root_window_transformers.h" |
6 | 6 |
7 #include <cmath> | 7 #include <cmath> |
8 | 8 |
9 #include "ash/display/display_info.h" | 9 #include "ash/display/display_info.h" |
10 #include "ash/display/display_manager.h" | 10 #include "ash/display/display_manager.h" |
11 #include "ash/magnifier/magnification_controller.h" | 11 #include "ash/magnifier/magnification_controller.h" |
(...skipping 255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
267 | 267 |
268 aura::RootWindowTransformer* CreateRootWindowTransformerForMirroredDisplay( | 268 aura::RootWindowTransformer* CreateRootWindowTransformerForMirroredDisplay( |
269 const DisplayInfo& source_display_info, | 269 const DisplayInfo& source_display_info, |
270 const DisplayInfo& mirror_display_info) { | 270 const DisplayInfo& mirror_display_info) { |
271 return new MirrorRootWindowTransformer(source_display_info, | 271 return new MirrorRootWindowTransformer(source_display_info, |
272 mirror_display_info); | 272 mirror_display_info); |
273 } | 273 } |
274 | 274 |
275 } // namespace internal | 275 } // namespace internal |
276 } // namespace ash | 276 } // namespace ash |
OLD | NEW |