diff options
Diffstat (limited to 'ui/base/x/x11_util.h')
-rw-r--r-- | ui/base/x/x11_util.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/ui/base/x/x11_util.h b/ui/base/x/x11_util.h index 1169f87..377dd41 100644 --- a/ui/base/x/x11_util.h +++ b/ui/base/x/x11_util.h @@ -303,9 +303,13 @@ UI_EXPORT bool ParseOutputOverscanFlag(const unsigned char* prop, unsigned long nitems, bool* flag); -// Gets the name of outputs given by |output_ids|. +// Gets the names of the all displays physically connected to the system. +UI_EXPORT std::vector<std::string> GetDisplayNames( + const std::vector<XID>& output_id); + +// Gets the name of outputs given by |output_id|. UI_EXPORT std::vector<std::string> GetOutputNames( - const std::vector<XID>& output_ids); + const std::vector<XID>& output_id); enum WindowManagerName { WM_UNKNOWN, |