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

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

Issue 2809913003: Re-order fields for better alignment (Closed)
Patch Set: Created 3 years, 8 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
« no previous file with comments | « ui/display/types/display_mode.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/display/types/display_mode.cc
diff --git a/ui/display/types/display_mode.cc b/ui/display/types/display_mode.cc
index 6d43caa5638406c5e43a4b7003d0e491db066715..62eb49c8a1a3f51862732fff8690574c872f49c0 100644
--- a/ui/display/types/display_mode.cc
+++ b/ui/display/types/display_mode.cc
@@ -12,9 +12,7 @@ namespace display {
DisplayMode::DisplayMode(const gfx::Size& size,
bool interlaced,
float refresh_rate)
- : size_(size),
- is_interlaced_(interlaced),
- refresh_rate_(refresh_rate) {}
+ : size_(size), refresh_rate_(refresh_rate), is_interlaced_(interlaced) {}
DisplayMode::~DisplayMode() {}
« no previous file with comments | « ui/display/types/display_mode.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698