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

Unified Diff: third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h

Issue 1079323002: Support text track selection in video controls (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Addressed UX comment on displaying icons only for duplicate labels and rebase Created 4 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
Index: third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h
diff --git a/third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h b/third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h
index f1a63493e3353477111e3d0d44258e9318a0d91f..79d5cfbf159890de8775099aac9f853a7338ee72 100644
--- a/third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h
+++ b/third_party/WebKit/Source/core/css/CSSPrimitiveValueMappings.h
@@ -456,6 +456,15 @@ template<> inline CSSPrimitiveValue::CSSPrimitiveValue(ControlPart e)
case MediaTimeRemainingPart:
m_value.valueID = CSSValueMediaTimeRemainingDisplay;
break;
+ case MediaTrackSelectionCheckmarkPart:
+ m_value.valueID = CSSValueInternalMediaTrackSelectionCheckmark;
+ break;
+ case MediaClosedCaptionsIconPart:
+ m_value.valueID = CSSValueInternalMediaClosedCaptionsIcon;
+ break;
+ case MediaSubtitlesIconPart:
+ m_value.valueID = CSSValueInternalMediaSubtitlesIcon;
+ break;
case MenulistPart:
m_value.valueID = CSSValueMenulist;
break;

Powered by Google App Engine
This is Rietveld 408576698