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