This source file includes following definitions.
- Initialize
- GrabServer
- UngrabServer
- SyncWithServer
- SetBackgroundColor
- ForceDPMSOn
- GetOutputs
- AddMode
- Configure
- CreateFrameBuffer
- GetHDCPState
- SetHDCPState
- GetAvailableColorCalibrationProfiles
- SetColorCalibrationProfile
- AddObserver
- RemoveObserver
#include "ui/display/chromeos/ozone/native_display_delegate_ozone.h"
#include "base/logging.h"
namespace ui {
NativeDisplayDelegateOzone::NativeDisplayDelegateOzone() {}
NativeDisplayDelegateOzone::~NativeDisplayDelegateOzone() {}
void NativeDisplayDelegateOzone::Initialize() {
NOTIMPLEMENTED();
}
void NativeDisplayDelegateOzone::GrabServer() {
NOTIMPLEMENTED();
}
void NativeDisplayDelegateOzone::UngrabServer() {
NOTIMPLEMENTED();
}
void NativeDisplayDelegateOzone::SyncWithServer() {
NOTIMPLEMENTED();
}
void NativeDisplayDelegateOzone::SetBackgroundColor(uint32_t color_argb) {
NOTIMPLEMENTED();
}
void NativeDisplayDelegateOzone::ForceDPMSOn() {
NOTIMPLEMENTED();
}
std::vector<ui::DisplaySnapshot*> NativeDisplayDelegateOzone::GetOutputs() {
NOTIMPLEMENTED();
return std::vector<ui::DisplaySnapshot*>();
}
void NativeDisplayDelegateOzone::AddMode(const ui::DisplaySnapshot& output,
const ui::DisplayMode* mode) {
NOTIMPLEMENTED();
}
bool NativeDisplayDelegateOzone::Configure(const ui::DisplaySnapshot& output,
const ui::DisplayMode* mode,
const gfx::Point& origin) {
NOTIMPLEMENTED();
return false;
}
void NativeDisplayDelegateOzone::CreateFrameBuffer(const gfx::Size& size) {
NOTIMPLEMENTED();
}
bool NativeDisplayDelegateOzone::GetHDCPState(const ui::DisplaySnapshot& output,
ui::HDCPState* state) {
NOTIMPLEMENTED();
return false;
}
bool NativeDisplayDelegateOzone::SetHDCPState(const ui::DisplaySnapshot& output,
ui::HDCPState state) {
NOTIMPLEMENTED();
return 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();
}
}