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

Unified Diff: ui/display/types/display_constants.h

Issue 1456623002: Add support for virtual displays (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Use std::max as suggested by oshima@ Created 5 years 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/display.gyp ('k') | ui/display/util/display_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/display/types/display_constants.h
diff --git a/ui/display/types/display_constants.h b/ui/display/types/display_constants.h
index aedb04bc9eab7a6fd9a5f7cfe34062e47180722d..b24bab7e6373dd81f3f9556fa9b2f85e1df75d51 100644
--- a/ui/display/types/display_constants.h
+++ b/ui/display/types/display_constants.h
@@ -28,9 +28,10 @@ enum DisplayConnectionType {
DISPLAY_CONNECTION_TYPE_DVI = 1 << 4,
DISPLAY_CONNECTION_TYPE_DISPLAYPORT = 1 << 5,
DISPLAY_CONNECTION_TYPE_NETWORK = 1 << 6,
+ DISPLAY_CONNECTION_TYPE_VIRTUAL = 1 << 7,
// Update this when adding a new type.
- DISPLAY_CONNECTION_TYPE_LAST = DISPLAY_CONNECTION_TYPE_NETWORK
+ DISPLAY_CONNECTION_TYPE_LAST = DISPLAY_CONNECTION_TYPE_VIRTUAL
};
// Content protection methods applied on video output.
« no previous file with comments | « ui/display/display.gyp ('k') | ui/display/util/display_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698