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

Side by Side Diff: ui/display/types/display_snapshot.cc

Issue 1309273005: native_viewport support for ozone (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: rebased Created 5 years, 3 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
« no previous file with comments | « ui/display/types/display_snapshot.h ('k') | ui/gl/gl_image_linux_dma_buffer.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "ui/display/types/display_snapshot.h" 5 #include "ui/display/types/display_snapshot.h"
6 6
7 namespace ui { 7 namespace ui {
8 8
9 DisplaySnapshot::DisplaySnapshot(int64_t display_id, 9 DisplaySnapshot::DisplaySnapshot(int64_t display_id,
10 const gfx::Point& origin, 10 const gfx::Point& origin,
11 const gfx::Size& physical_size, 11 const gfx::Size& physical_size,
12 DisplayConnectionType type, 12 DisplayConnectionType type,
13 bool is_aspect_preserving_scaling,
14 bool has_overscan,
15 std::string display_name,
16 const std::vector<const DisplayMode*>& modes, 13 const std::vector<const DisplayMode*>& modes,
17 const DisplayMode* current_mode, 14 const DisplayMode* current_mode,
18 const DisplayMode* native_mode) 15 const DisplayMode* native_mode)
19 : display_id_(display_id), 16 : display_id_(display_id),
20 origin_(origin), 17 origin_(origin),
21 physical_size_(physical_size), 18 physical_size_(physical_size),
22 type_(type), 19 type_(type),
23 is_aspect_preserving_scaling_(is_aspect_preserving_scaling),
24 has_overscan_(has_overscan),
25 display_name_(display_name),
26 modes_(modes), 20 modes_(modes),
27 current_mode_(current_mode), 21 current_mode_(current_mode),
28 native_mode_(native_mode), 22 native_mode_(native_mode),
29 product_id_(kInvalidProductID) { 23 product_id_(kInvalidProductID) {
30 } 24 }
31 25
32 DisplaySnapshot::~DisplaySnapshot() {} 26 DisplaySnapshot::~DisplaySnapshot() {}
33 27
34 } // namespace ui 28 } // namespace ui
OLDNEW
« no previous file with comments | « ui/display/types/display_snapshot.h ('k') | ui/gl/gl_image_linux_dma_buffer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698