Convert env to a defaultdict in run_executable() to fix other callers of that function.
[chromium-blink-merge.git] / extensions / shell / browser / shell_display_info_provider.cc
bloba86173fa93ccce5178727dc2b7503375bc004f2f
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 "extensions/shell/browser/shell_display_info_provider.h"
7 namespace extensions {
9 ShellDisplayInfoProvider::ShellDisplayInfoProvider() {
12 ShellDisplayInfoProvider::~ShellDisplayInfoProvider() {
15 bool ShellDisplayInfoProvider::SetInfo(
16 const std::string& display_id,
17 const core_api::system_display::DisplayProperties& info,
18 std::string* error) {
19 *error = "Not implemented";
20 return false;
23 void ShellDisplayInfoProvider::UpdateDisplayUnitInfoForPlatform(
24 const gfx::Display& display,
25 extensions::core_api::system_display::DisplayUnitInfo* unit) {
26 NOTIMPLEMENTED();
29 gfx::Screen* ShellDisplayInfoProvider::GetActiveScreen() {
30 return NULL;
33 // static
34 DisplayInfoProvider* DisplayInfoProvider::Create() {
35 return new ShellDisplayInfoProvider();
38 } // namespace extensions