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

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: Rebase and lgtm nits 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 86e3c77a87f45a37e2262e5eee2fadd2e457d1bd..079e86029f63395af1e29883c0bf1e33bf5478e3 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