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
3 // found in the LICENSE file.
5 #include "chrome/browser/extensions/display_info_provider_aura.h"
7 #include "ui/gfx/screen.h"
11 DisplayInfoProviderAura::DisplayInfoProviderAura() {
14 DisplayInfoProviderAura::~DisplayInfoProviderAura() {
17 bool DisplayInfoProviderAura::SetInfo(
18 const std::string
& display_id
,
19 const core_api::system_display::DisplayProperties
& info
,
21 *error
= "Not implemented";
25 void DisplayInfoProviderAura::UpdateDisplayUnitInfoForPlatform(
26 const gfx::Display
& display
,
27 extensions::core_api::system_display::DisplayUnitInfo
* unit
) {
31 gfx::Screen
* DisplayInfoProviderAura::GetActiveScreen() {
32 return gfx::Screen::GetNativeScreen();
36 DisplayInfoProvider
* DisplayInfoProvider::Create() {
37 return new DisplayInfoProviderAura();
40 } // namespace extensions