| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 "chrome/browser/extensions/display_info_provider_chromeos.h" | 5 #include "chrome/browser/extensions/display_info_provider_chromeos.h" |
| 6 | 6 |
| 7 #include "ash/display/display_controller.h" | 7 #include "ash/display/display_controller.h" |
| 8 #include "ash/display/display_manager.h" | 8 #include "ash/display/display_manager.h" |
| 9 #include "ash/shell.h" | 9 #include "ash/shell.h" |
| 10 #include "base/message_loop/message_loop_proxy.h" | 10 #include "base/message_loop/message_loop_proxy.h" |
| 11 #include "base/strings/string_number_conversions.h" | 11 #include "base/strings/string_number_conversions.h" |
| 12 #include "extensions/common/api/system_display.h" | 12 #include "extensions/common/api/system_display.h" |
| 13 #include "ui/gfx/display.h" | 13 #include "ui/gfx/display.h" |
| 14 #include "ui/gfx/point.h" | 14 #include "ui/gfx/geometry/point.h" |
| 15 #include "ui/gfx/rect.h" | 15 #include "ui/gfx/rect.h" |
| 16 | 16 |
| 17 using ash::DisplayManager; | 17 using ash::DisplayManager; |
| 18 | 18 |
| 19 namespace extensions { | 19 namespace extensions { |
| 20 | 20 |
| 21 using core_api::system_display::Bounds; | 21 using core_api::system_display::Bounds; |
| 22 using core_api::system_display::DisplayUnitInfo; | 22 using core_api::system_display::DisplayUnitInfo; |
| 23 using core_api::system_display::DisplayProperties; | 23 using core_api::system_display::DisplayProperties; |
| 24 using core_api::system_display::Insets; | 24 using core_api::system_display::Insets; |
| (...skipping 359 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 384 gfx::Screen* DisplayInfoProviderChromeOS::GetActiveScreen() { | 384 gfx::Screen* DisplayInfoProviderChromeOS::GetActiveScreen() { |
| 385 return ash::Shell::GetScreen(); | 385 return ash::Shell::GetScreen(); |
| 386 } | 386 } |
| 387 | 387 |
| 388 // static | 388 // static |
| 389 DisplayInfoProvider* DisplayInfoProvider::Create() { | 389 DisplayInfoProvider* DisplayInfoProvider::Create() { |
| 390 return new DisplayInfoProviderChromeOS(); | 390 return new DisplayInfoProviderChromeOS(); |
| 391 } | 391 } |
| 392 | 392 |
| 393 } // namespace extensions | 393 } // namespace extensions |
| OLD | NEW |