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.
5 #include "ui/display/chromeos/test/test_display_snapshot.h"
8 TestDisplaySnapshot::TestDisplaySnapshot()
13 DISPLAY_CONNECTION_TYPE_UNKNOWN
,
17 std::vector
<const DisplayMode
*>(),
21 TestDisplaySnapshot::TestDisplaySnapshot(
23 bool has_proper_display_id
,
24 const gfx::Point
& origin
,
25 const gfx::Size
& physical_size
,
26 DisplayConnectionType type
,
27 bool is_aspect_preserving_scaling
,
28 const std::vector
<const DisplayMode
*>& modes
,
29 const DisplayMode
* current_mode
,
30 const DisplayMode
* native_mode
)
31 : DisplaySnapshot(display_id
,
32 has_proper_display_id
,
36 is_aspect_preserving_scaling
,
43 TestDisplaySnapshot::~TestDisplaySnapshot() {}
45 std::string
TestDisplaySnapshot::ToString() const { return ""; }