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
) {
28 static bool logged_once
= false;
35 gfx::Screen
* DisplayInfoProviderAura::GetActiveScreen() {
36 return gfx::Screen::GetNativeScreen();
40 DisplayInfoProvider
* DisplayInfoProvider::Create() {
41 return new DisplayInfoProviderAura();
44 } // namespace extensions