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

Unified Diff: ui/display/display_constants.h

Issue 230763004: Split ui/display types into separate module and have Ozone depend on it (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 6 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/display.gyp ('k') | ui/display/display_unittests.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ui/display/display_constants.h
diff --git a/ui/display/display_constants.h b/ui/display/display_constants.h
deleted file mode 100644
index b721fc76e0c72e62407249e979f402d04dcb17d7..0000000000000000000000000000000000000000
--- a/ui/display/display_constants.h
+++ /dev/null
@@ -1,52 +0,0 @@
-// Copyright 2014 The Chromium Authors. All rights reserved.
-// Use of this source code is governed by a BSD-style license that can be
-// found in the LICENSE file.
-
-#ifndef UI_DISPLAY_DISPLAY_CONSTANTS_H_
-#define UI_DISPLAY_DISPLAY_CONSTANTS_H_
-
-namespace ui {
-
-// Used to describe the state of a multi-display configuration.
-enum MultipleDisplayState {
- MULTIPLE_DISPLAY_STATE_INVALID,
- MULTIPLE_DISPLAY_STATE_HEADLESS,
- MULTIPLE_DISPLAY_STATE_SINGLE,
- MULTIPLE_DISPLAY_STATE_DUAL_MIRROR,
- MULTIPLE_DISPLAY_STATE_DUAL_EXTENDED,
-};
-
-// Video output types.
-enum DisplayConnectionType {
- DISPLAY_CONNECTION_TYPE_NONE = 0,
- DISPLAY_CONNECTION_TYPE_UNKNOWN = 1 << 0,
- DISPLAY_CONNECTION_TYPE_INTERNAL = 1 << 1,
- DISPLAY_CONNECTION_TYPE_VGA = 1 << 2,
- DISPLAY_CONNECTION_TYPE_HDMI = 1 << 3,
- DISPLAY_CONNECTION_TYPE_DVI = 1 << 4,
- DISPLAY_CONNECTION_TYPE_DISPLAYPORT = 1 << 5,
- DISPLAY_CONNECTION_TYPE_NETWORK = 1 << 6,
-};
-
-// Content protection methods applied on video output.
-enum ContentProtectionMethod {
- CONTENT_PROTECTION_METHOD_NONE = 0,
- CONTENT_PROTECTION_METHOD_HDCP = 1 << 0,
-};
-
-// HDCP protection state.
-enum HDCPState { HDCP_STATE_UNDESIRED, HDCP_STATE_DESIRED, HDCP_STATE_ENABLED };
-
-// Color calibration profiles. Don't change the order, and edit
-// tools/metrics/histograms/histograms.xml when a new item is added.
-enum ColorCalibrationProfile {
- COLOR_PROFILE_STANDARD,
- COLOR_PROFILE_DYNAMIC,
- COLOR_PROFILE_MOVIE,
- COLOR_PROFILE_READING,
- NUM_COLOR_PROFILES,
-};
-
-} // namespace ui
-
-#endif // UI_DISPLAY_DISPLAY_CONSTANTS_H_
« no previous file with comments | « ui/display/display.gyp ('k') | ui/display/display_unittests.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698