blob: d85b641a6b92f8670afc94ec7d0e2fc294ccd9c2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
// 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/ozone/common/native_display_delegate_ozone.h"
#include "base/logging.h"
#include "ui/ozone/common/display_snapshot_proxy.h"
#include "ui/ozone/common/display_util.h"
namespace ui {
NativeDisplayDelegateOzone::NativeDisplayDelegateOzone() {
}
NativeDisplayDelegateOzone::~NativeDisplayDelegateOzone() {
}
void NativeDisplayDelegateOzone::Initialize() {
DisplaySnapshot_Params params;
if (CreateSnapshotFromCommandLine(¶ms)) {
DCHECK_NE(DISPLAY_CONNECTION_TYPE_NONE, params.type);
displays_.push_back(new DisplaySnapshotProxy(params));
}
}
void NativeDisplayDelegateOzone::GrabServer() {
NOTIMPLEMENTED();
}
void NativeDisplayDelegateOzone::UngrabServer() {
NOTIMPLEMENTED();
}
bool NativeDisplayDelegateOzone::TakeDisplayControl() {
NOTIMPLEMENTED();
return false;
}
bool NativeDisplayDelegateOzone::RelinquishDisplayControl() {
NOTIMPLEMENTED();
return false;
}
void NativeDisplayDelegateOzone::SyncWithServer() {
NOTIMPLEMENTED();
}
void NativeDisplayDelegateOzone::SetBackgroundColor(uint32_t color_argb) {
NOTIMPLEMENTED();
}
void NativeDisplayDelegateOzone::ForceDPMSOn() {
NOTIMPLEMENTED();
}
void NativeDisplayDelegateOzone::GetDisplays(
const GetDisplaysCallback& callback) {
callback.Run(displays_.get());
}
void NativeDisplayDelegateOzone::AddMode(const ui::DisplaySnapshot& output,
const ui::DisplayMode* mode) {
NOTIMPLEMENTED();
}
void NativeDisplayDelegateOzone::Configure(const ui::DisplaySnapshot& output,
const ui::DisplayMode* mode,
const gfx::Point& origin,
const ConfigureCallback& callback) {
NOTIMPLEMENTED();
callback.Run(true);
}
void NativeDisplayDelegateOzone::CreateFrameBuffer(const gfx::Size& size) {
NOTIMPLEMENTED();
}
void NativeDisplayDelegateOzone::GetHDCPState(
const ui::DisplaySnapshot& output,
const GetHDCPStateCallback& callback) {
NOTIMPLEMENTED();
callback.Run(false, HDCP_STATE_UNDESIRED);
}
void NativeDisplayDelegateOzone::SetHDCPState(
const ui::DisplaySnapshot& output,
ui::HDCPState state,
const SetHDCPStateCallback& callback) {
NOTIMPLEMENTED();
callback.Run(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
|