• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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.
4 
5 #include "ui/ozone/common/chromeos/native_display_delegate_ozone.h"
6 
7 #include "base/logging.h"
8 
9 namespace ui {
10 
NativeDisplayDelegateOzone()11 NativeDisplayDelegateOzone::NativeDisplayDelegateOzone() {}
12 
~NativeDisplayDelegateOzone()13 NativeDisplayDelegateOzone::~NativeDisplayDelegateOzone() {}
14 
Initialize()15 void NativeDisplayDelegateOzone::Initialize() {
16   NOTIMPLEMENTED();
17 }
18 
GrabServer()19 void NativeDisplayDelegateOzone::GrabServer() {
20   NOTIMPLEMENTED();
21 }
22 
UngrabServer()23 void NativeDisplayDelegateOzone::UngrabServer() {
24   NOTIMPLEMENTED();
25 }
26 
SyncWithServer()27 void NativeDisplayDelegateOzone::SyncWithServer() {
28   NOTIMPLEMENTED();
29 }
30 
SetBackgroundColor(uint32_t color_argb)31 void NativeDisplayDelegateOzone::SetBackgroundColor(uint32_t color_argb) {
32   NOTIMPLEMENTED();
33 }
34 
ForceDPMSOn()35 void NativeDisplayDelegateOzone::ForceDPMSOn() {
36   NOTIMPLEMENTED();
37 }
38 
GetDisplays()39 std::vector<ui::DisplaySnapshot*> NativeDisplayDelegateOzone::GetDisplays() {
40   NOTIMPLEMENTED();
41   return std::vector<ui::DisplaySnapshot*>();
42 }
43 
AddMode(const ui::DisplaySnapshot & output,const ui::DisplayMode * mode)44 void NativeDisplayDelegateOzone::AddMode(const ui::DisplaySnapshot& output,
45                                          const ui::DisplayMode* mode) {
46   NOTIMPLEMENTED();
47 }
48 
Configure(const ui::DisplaySnapshot & output,const ui::DisplayMode * mode,const gfx::Point & origin)49 bool NativeDisplayDelegateOzone::Configure(const ui::DisplaySnapshot& output,
50                                            const ui::DisplayMode* mode,
51                                            const gfx::Point& origin) {
52   NOTIMPLEMENTED();
53   return false;
54 }
55 
CreateFrameBuffer(const gfx::Size & size)56 void NativeDisplayDelegateOzone::CreateFrameBuffer(const gfx::Size& size) {
57   NOTIMPLEMENTED();
58 }
59 
GetHDCPState(const ui::DisplaySnapshot & output,ui::HDCPState * state)60 bool NativeDisplayDelegateOzone::GetHDCPState(const ui::DisplaySnapshot& output,
61                                               ui::HDCPState* state) {
62   NOTIMPLEMENTED();
63   return false;
64 }
65 
SetHDCPState(const ui::DisplaySnapshot & output,ui::HDCPState state)66 bool NativeDisplayDelegateOzone::SetHDCPState(const ui::DisplaySnapshot& output,
67                                               ui::HDCPState state) {
68   NOTIMPLEMENTED();
69   return false;
70 }
71 
72 std::vector<ui::ColorCalibrationProfile>
GetAvailableColorCalibrationProfiles(const ui::DisplaySnapshot & output)73 NativeDisplayDelegateOzone::GetAvailableColorCalibrationProfiles(
74     const ui::DisplaySnapshot& output) {
75   NOTIMPLEMENTED();
76   return std::vector<ui::ColorCalibrationProfile>();
77 }
78 
SetColorCalibrationProfile(const ui::DisplaySnapshot & output,ui::ColorCalibrationProfile new_profile)79 bool NativeDisplayDelegateOzone::SetColorCalibrationProfile(
80     const ui::DisplaySnapshot& output,
81     ui::ColorCalibrationProfile new_profile) {
82   NOTIMPLEMENTED();
83   return false;
84 }
85 
AddObserver(NativeDisplayObserver * observer)86 void NativeDisplayDelegateOzone::AddObserver(NativeDisplayObserver* observer) {
87   NOTIMPLEMENTED();
88 }
89 
RemoveObserver(NativeDisplayObserver * observer)90 void NativeDisplayDelegateOzone::RemoveObserver(
91     NativeDisplayObserver* observer) {
92   NOTIMPLEMENTED();
93 }
94 
95 }  // namespace ui
96