Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(141)

Side by Side Diff: ui/ozone/common/gpu/ozone_gpu_message_params.cc

Issue 378673002: [Ozone] Adding display related IPC messages (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 6 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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.
4
5 #include "ui/ozone/common/gpu/ozone_gpu_message_params.h"
6
7 namespace ui {
8
9 DisplayMode_Params::DisplayMode_Params()
10 : size(), is_interlaced(false), refresh_rate(0.0f) {}
11
12 DisplayMode_Params::~DisplayMode_Params() {}
13
14 DisplaySnapshot_Params::DisplaySnapshot_Params()
15 : display_id(0),
16 has_proper_display_id(false),
17 origin(),
18 physical_size(),
19 type(ui::DISPLAY_CONNECTION_TYPE_NONE),
20 is_aspect_preserving_scaling(false),
21 has_overscan(false),
22 display_name(),
23 modes(),
24 has_current_mode(false),
25 current_mode(),
26 has_native_mode(false),
27 native_mode() {}
28
29 DisplaySnapshot_Params::~DisplaySnapshot_Params() {}
30
31 } // namespace ui
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698