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

Side by Side Diff: ui/display/manager/chromeos/x11/display_snapshot_x11.cc

Issue 2540313002: Split //ui/display and create //ui/display/manager. (Closed)
Patch Set: Cleanup export header. Created 4 years 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
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/chromeos/x11/display_snapshot_x11.h" 5 #include "ui/display/manager/chromeos/x11/display_snapshot_x11.h"
6 6
7 #include "base/strings/stringprintf.h" 7 #include "base/strings/stringprintf.h"
8 #include "ui/display/chromeos/x11/display_mode_x11.h" 8 #include "ui/display/manager/chromeos/x11/display_mode_x11.h"
9 9
10 namespace ui { 10 namespace ui {
11 11
12 DisplaySnapshotX11::DisplaySnapshotX11( 12 DisplaySnapshotX11::DisplaySnapshotX11(
13 int64_t display_id, 13 int64_t display_id,
14 const gfx::Point& origin, 14 const gfx::Point& origin,
15 const gfx::Size& physical_size, 15 const gfx::Size& physical_size,
16 DisplayConnectionType type, 16 DisplayConnectionType type,
17 bool is_aspect_preserving_scaling, 17 bool is_aspect_preserving_scaling,
18 bool has_overscan, 18 bool has_overscan,
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
52 output_, 52 output_,
53 crtc_, 53 crtc_,
54 current_mode_ 54 current_mode_
55 ? static_cast<const DisplayModeX11*>(current_mode_)->mode_id() 55 ? static_cast<const DisplayModeX11*>(current_mode_)->mode_id()
56 : 0, 56 : 0,
57 physical_size_.width(), 57 physical_size_.width(),
58 physical_size_.height()); 58 physical_size_.height());
59 } 59 }
60 60
61 } // namespace ui 61 } // namespace ui
OLDNEW
« no previous file with comments | « ui/display/manager/chromeos/x11/display_snapshot_x11.h ('k') | ui/display/manager/chromeos/x11/display_util_x11.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698