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