Revert of Add button to add new FSP services to Files app. (patchset #8 id:140001...
[chromium-blink-merge.git] / chrome / browser / chromeos / dbus / chrome_console_service_provider_delegate.cc
blob323ace23b9f40fdbb1abc06aeb9dc5aa9c4ed0f5
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/chromeos/dbus/chrome_console_service_provider_delegate.h"
7 #include "ash/shell.h"
8 #include "ui/display/chromeos/display_configurator.h"
10 namespace chromeos {
12 ChromeConsoleServiceProviderDelegate::ChromeConsoleServiceProviderDelegate() {
15 ChromeConsoleServiceProviderDelegate::~ChromeConsoleServiceProviderDelegate() {
18 void ChromeConsoleServiceProviderDelegate::TakeDisplayOwnership() {
19 ash::Shell::GetInstance()->display_configurator()->TakeControl();
22 void ChromeConsoleServiceProviderDelegate::ReleaseDisplayOwnership() {
23 ash::Shell::GetInstance()->display_configurator()->RelinquishControl();
26 } // namespace chromeos