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

Side by Side Diff: ui/display/chromeos/x11/display_snapshot_x11.h

Issue 1671223002: Revert of Give user ability to file a feedback report from the display error notification. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 10 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
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 #ifndef UI_DISPLAY_CHROMEOS_X11_DISPLAY_SNAPSHOT_X11_H_ 5 #ifndef UI_DISPLAY_CHROMEOS_X11_DISPLAY_SNAPSHOT_X11_H_
6 #define UI_DISPLAY_CHROMEOS_X11_DISPLAY_SNAPSHOT_X11_H_ 6 #define UI_DISPLAY_CHROMEOS_X11_DISPLAY_SNAPSHOT_X11_H_
7 7
8 #include <stdint.h> 8 #include <stdint.h>
9 9
10 #include "base/macros.h" 10 #include "base/macros.h"
(...skipping 10 matching lines...) Expand all
21 class DISPLAY_EXPORT DisplaySnapshotX11 : public DisplaySnapshot { 21 class DISPLAY_EXPORT DisplaySnapshotX11 : public DisplaySnapshot {
22 public: 22 public:
23 DisplaySnapshotX11(int64_t display_id, 23 DisplaySnapshotX11(int64_t display_id,
24 const gfx::Point& origin, 24 const gfx::Point& origin,
25 const gfx::Size& physical_size, 25 const gfx::Size& physical_size,
26 DisplayConnectionType type, 26 DisplayConnectionType type,
27 bool is_aspect_preserving_scaling, 27 bool is_aspect_preserving_scaling,
28 bool has_overscan, 28 bool has_overscan,
29 std::string display_name, 29 std::string display_name,
30 const std::vector<const DisplayMode*>& modes, 30 const std::vector<const DisplayMode*>& modes,
31 const std::vector<uint8_t>& edid,
32 const DisplayMode* current_mode, 31 const DisplayMode* current_mode,
33 const DisplayMode* native_mode, 32 const DisplayMode* native_mode,
34 RROutput output, 33 RROutput output,
35 RRCrtc crtc, 34 RRCrtc crtc,
36 int index); 35 int index);
37 ~DisplaySnapshotX11() override; 36 ~DisplaySnapshotX11() override;
38 37
39 RROutput output() const { return output_; } 38 RROutput output() const { return output_; }
40 RRCrtc crtc() const { return crtc_; } 39 RRCrtc crtc() const { return crtc_; }
41 int index() const { return index_; } 40 int index() const { return index_; }
(...skipping 11 matching lines...) Expand all
53 // This output's index in the array returned by XRandR. Stable even as 52 // This output's index in the array returned by XRandR. Stable even as
54 // outputs are connected or disconnected. 53 // outputs are connected or disconnected.
55 int index_; 54 int index_;
56 55
57 DISALLOW_COPY_AND_ASSIGN(DisplaySnapshotX11); 56 DISALLOW_COPY_AND_ASSIGN(DisplaySnapshotX11);
58 }; 57 };
59 58
60 } // namespace ui 59 } // namespace ui
61 60
62 #endif // UI_DISPLAY_CHROMEOS_X11_DISPLAY_SNAPSHOT_X11_H_ 61 #endif // UI_DISPLAY_CHROMEOS_X11_DISPLAY_SNAPSHOT_X11_H_
OLDNEW
« no previous file with comments | « ui/display/chromeos/test/test_display_snapshot.cc ('k') | ui/display/chromeos/x11/display_snapshot_x11.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698