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()
12 DISPLAY_CONNECTION_TYPE_UNKNOWN
,
16 std::vector
<const DisplayMode
*>(),
20 TestDisplaySnapshot::TestDisplaySnapshot(
22 const gfx::Point
& origin
,
23 const gfx::Size
& physical_size
,
24 DisplayConnectionType type
,
25 bool is_aspect_preserving_scaling
,
26 const std::vector
<const DisplayMode
*>& modes
,
27 const DisplayMode
* current_mode
,
28 const DisplayMode
* native_mode
)
29 : DisplaySnapshot(display_id
,
33 is_aspect_preserving_scaling
,
40 TestDisplaySnapshot::~TestDisplaySnapshot() {}
42 std::string
TestDisplaySnapshot::ToString() const { return ""; }