This source file includes following definitions.
- ToString
#include "ui/display/chromeos/test/test_display_snapshot.h"
namespace ui {
TestDisplaySnapshot::TestDisplaySnapshot()
: DisplaySnapshot(0,
false,
gfx::Point(0, 0),
gfx::Size(0, 0),
OUTPUT_TYPE_UNKNOWN,
false,
false,
std::string(),
std::vector<const DisplayMode*>(),
NULL,
NULL) {}
TestDisplaySnapshot::TestDisplaySnapshot(
int64_t display_id,
bool has_proper_display_id,
const gfx::Point& origin,
const gfx::Size& physical_size,
OutputType type,
bool is_aspect_preserving_scaling,
const std::vector<const DisplayMode*>& modes,
const DisplayMode* current_mode,
const DisplayMode* native_mode)
: DisplaySnapshot(display_id,
has_proper_display_id,
origin,
physical_size,
type,
is_aspect_preserving_scaling,
false,
std::string(),
modes,
current_mode,
native_mode) {}
TestDisplaySnapshot::~TestDisplaySnapshot() {}
std::string TestDisplaySnapshot::ToString() const { return ""; }
}