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

Side by Side 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
(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::GetDisplays() {
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
OLDNEW
« 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