Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(357)

Unified Diff: ui/display/chromeos/ozone/native_display_delegate_ozone.cc

Issue 230763004: Split ui/display types into separate module and have Ozone depend on it (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 6 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: ui/display/chromeos/ozone/native_display_delegate_ozone.cc
diff --git a/ui/display/chromeos/ozone/native_display_delegate_ozone.cc b/ui/display/chromeos/ozone/native_display_delegate_ozone.cc
deleted file mode 100644
index 8f5517f6272b94cfbbfb763d07cbefe4561a5d67..0000000000000000000000000000000000000000
--- a/ui/display/chromeos/ozone/native_display_delegate_ozone.cc
+++ /dev/null
@@ -1,95 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#include "ui/display/chromeos/ozone/native_display_delegate_ozone.h"
-
-#include "base/logging.h"
-
-namespace ui {
-
-NativeDisplayDelegateOzone::NativeDisplayDelegateOzone() {}
-
-NativeDisplayDelegateOzone::~NativeDisplayDelegateOzone() {}
-
-void NativeDisplayDelegateOzone::Initialize() {
- NOTIMPLEMENTED();
-}
-
-void NativeDisplayDelegateOzone::GrabServer() {
- NOTIMPLEMENTED();
-}
-
-void NativeDisplayDelegateOzone::UngrabServer() {
- NOTIMPLEMENTED();
-}
-
-void NativeDisplayDelegateOzone::SyncWithServer() {
- NOTIMPLEMENTED();
-}
-
-void NativeDisplayDelegateOzone::SetBackgroundColor(uint32_t color_argb) {
- NOTIMPLEMENTED();
-}
-
-void NativeDisplayDelegateOzone::ForceDPMSOn() {
- NOTIMPLEMENTED();
-}
-
-std::vector<ui::DisplaySnapshot*> NativeDisplayDelegateOzone::GetDisplays() {
- NOTIMPLEMENTED();
- return std::vector<ui::DisplaySnapshot*>();
-}
-
-void NativeDisplayDelegateOzone::AddMode(const ui::DisplaySnapshot& output,
- const ui::DisplayMode* mode) {
- NOTIMPLEMENTED();
-}
-
-bool NativeDisplayDelegateOzone::Configure(const ui::DisplaySnapshot& output,
- const ui::DisplayMode* mode,
- const gfx::Point& origin) {
- NOTIMPLEMENTED();
- return false;
-}
-
-void NativeDisplayDelegateOzone::CreateFrameBuffer(const gfx::Size& size) {
- NOTIMPLEMENTED();
-}
-
-bool NativeDisplayDelegateOzone::GetHDCPState(const ui::DisplaySnapshot& output,
- ui::HDCPState* state) {
- NOTIMPLEMENTED();
- return false;
-}
-
-bool NativeDisplayDelegateOzone::SetHDCPState(const ui::DisplaySnapshot& output,
- ui::HDCPState state) {
- NOTIMPLEMENTED();
- return false;
-}
-
-std::vector<ui::ColorCalibrationProfile>
-NativeDisplayDelegateOzone::GetAvailableColorCalibrationProfiles(
- const ui::DisplaySnapshot& output) {
- NOTIMPLEMENTED();
- return std::vector<ui::ColorCalibrationProfile>();
-}
-
-bool NativeDisplayDelegateOzone::SetColorCalibrationProfile(
- const ui::DisplaySnapshot& output,
- ui::ColorCalibrationProfile new_profile) {
- NOTIMPLEMENTED();
- return false;
-}
-
-void NativeDisplayDelegateOzone::AddObserver(NativeDisplayObserver* observer) {
- NOTIMPLEMENTED();
-}
-
-void NativeDisplayDelegateOzone::RemoveObserver(
- NativeDisplayObserver* observer) {
- NOTIMPLEMENTED();
-}
-
-} // namespace ui
« no previous file with comments | « ui/display/chromeos/ozone/native_display_delegate_ozone.h ('k') | ui/display/chromeos/test/test_display_snapshot.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698