Index: chromeos/display/output_configurator.h |
diff --git a/chromeos/display/output_configurator.h b/chromeos/display/output_configurator.h |
index b02d5a31a99ca5cd96ce82fdd88c85107a661971..5891785381cb22161e41415a98e62b8fd00679b1 100644 |
--- a/chromeos/display/output_configurator.h |
+++ b/chromeos/display/output_configurator.h |
@@ -44,6 +44,7 @@ class CHROMEOS_EXPORT OutputConfigurator |
public: |
struct ModeInfo { |
ModeInfo(); |
+ ModeInfo(int width, int height, bool interlaced); |
int width; |
int height; |
@@ -106,6 +107,10 @@ class CHROMEOS_EXPORT OutputConfigurator |
int64 display_id; |
bool has_display_id; |
+ |
+ // This output's index in the array returned by XRandR. Stable even as |
+ // outputs are connected or disconnected. |
+ int index; |
}; |
class Observer { |