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 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139
|
// 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/display/chromeos/test/test_native_display_delegate.h"
#include "base/bind.h"
#include "base/message_loop/message_loop.h"
#include "ui/display/chromeos/test/action_logger.h"
#include "ui/display/types/display_mode.h"
namespace ui {
namespace test {
TestNativeDisplayDelegate::TestNativeDisplayDelegate(ActionLogger* log)
: max_configurable_pixels_(0),
hdcp_state_(HDCP_STATE_UNDESIRED),
run_async_(false),
log_(log) {
}
TestNativeDisplayDelegate::~TestNativeDisplayDelegate() {
}
void TestNativeDisplayDelegate::Initialize() {
log_->AppendAction(kInitXRandR);
}
void TestNativeDisplayDelegate::GrabServer() {
log_->AppendAction(kGrab);
}
void TestNativeDisplayDelegate::UngrabServer() {
log_->AppendAction(kUngrab);
}
bool TestNativeDisplayDelegate::TakeDisplayControl() {
log_->AppendAction(kTakeDisplayControl);
return true;
}
bool TestNativeDisplayDelegate::RelinquishDisplayControl() {
log_->AppendAction(kRelinquishDisplayControl);
return true;
}
void TestNativeDisplayDelegate::SyncWithServer() {
log_->AppendAction(kSync);
}
void TestNativeDisplayDelegate::SetBackgroundColor(uint32_t color_argb) {
log_->AppendAction(GetBackgroundAction(color_argb));
}
void TestNativeDisplayDelegate::ForceDPMSOn() {
log_->AppendAction(kForceDPMS);
}
void TestNativeDisplayDelegate::GetDisplays(
const GetDisplaysCallback& callback) {
if (run_async_) {
base::MessageLoop::current()->PostTask(FROM_HERE,
base::Bind(callback, outputs_));
} else {
callback.Run(outputs_);
}
}
void TestNativeDisplayDelegate::AddMode(const DisplaySnapshot& output,
const DisplayMode* mode) {
log_->AppendAction(GetAddOutputModeAction(output, mode));
}
bool TestNativeDisplayDelegate::Configure(const DisplaySnapshot& output,
const DisplayMode* mode,
const gfx::Point& origin) {
log_->AppendAction(GetCrtcAction(output, mode, origin));
if (max_configurable_pixels_ == 0)
return true;
if (!mode)
return false;
return mode->size().GetArea() <= max_configurable_pixels_;
}
void TestNativeDisplayDelegate::Configure(const DisplaySnapshot& output,
const DisplayMode* mode,
const gfx::Point& origin,
const ConfigureCallback& callback) {
bool result = Configure(output, mode, origin);
if (run_async_) {
base::MessageLoop::current()->PostTask(FROM_HERE,
base::Bind(callback, result));
} else {
callback.Run(result);
}
}
void TestNativeDisplayDelegate::CreateFrameBuffer(const gfx::Size& size) {
log_->AppendAction(
GetFramebufferAction(size, outputs_.size() >= 1 ? outputs_[0] : NULL,
outputs_.size() >= 2 ? outputs_[1] : NULL));
}
bool TestNativeDisplayDelegate::GetHDCPState(const DisplaySnapshot& output,
HDCPState* state) {
*state = hdcp_state_;
return true;
}
bool TestNativeDisplayDelegate::SetHDCPState(const DisplaySnapshot& output,
HDCPState state) {
log_->AppendAction(GetSetHDCPStateAction(output, state));
return true;
}
std::vector<ui::ColorCalibrationProfile>
TestNativeDisplayDelegate::GetAvailableColorCalibrationProfiles(
const DisplaySnapshot& output) {
return std::vector<ui::ColorCalibrationProfile>();
}
bool TestNativeDisplayDelegate::SetColorCalibrationProfile(
const DisplaySnapshot& output,
ui::ColorCalibrationProfile new_profile) {
return false;
}
void TestNativeDisplayDelegate::AddObserver(NativeDisplayObserver* observer) {
}
void TestNativeDisplayDelegate::RemoveObserver(
NativeDisplayObserver* observer) {
}
} // namespace test
} // namespace ui
|