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

Unified Diff: ui/display/types/display_snapshot.cc

Issue 1636153002: 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: Fix errors Created 4 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: ui/display/types/display_snapshot.cc
diff --git a/ui/display/types/display_snapshot.cc b/ui/display/types/display_snapshot.cc
index 30e3ea890b222629157b77909162748dedb7f6a1..17c1196c555e90770f9d5d2ff2101fb414767f7e 100644
--- a/ui/display/types/display_snapshot.cc
+++ b/ui/display/types/display_snapshot.cc
@@ -15,6 +15,7 @@ DisplaySnapshot::DisplaySnapshot(int64_t display_id,
std::string display_name,
const base::FilePath& sys_path,
const std::vector<const DisplayMode*>& modes,
+ const std::vector<uint8_t>& edid,
const DisplayMode* current_mode,
const DisplayMode* native_mode)
: display_id_(display_id),
@@ -26,6 +27,7 @@ DisplaySnapshot::DisplaySnapshot(int64_t display_id,
display_name_(display_name),
sys_path_(sys_path),
modes_(modes),
+ edid_(edid),
current_mode_(current_mode),
native_mode_(native_mode),
product_id_(kInvalidProductID) {}

Powered by Google App Engine
This is Rietveld 408576698