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

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: Merge Blink repo changes and addressed comments from philipj and UX Created 4 years, 10 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 96ed6c5e3497c14b3272122a3e6892261d375bf8..e709badcb9b8063e37dc29daa991dfaeaf2cc297 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 = CSSValueMediaTrackSelectionCheckmark;
+ break;
+ case MediaClosedCaptionsIconPart:
+ m_value.valueID = CSSValueMediaClosedCaptionsIcon;
+ break;
+ case MediaSubtitlesIconPart:
+ m_value.valueID = CSSValueMediaSubtitlesIcon;
+ break;
case MenulistPart:
m_value.valueID = CSSValueMenulist;
break;

Powered by Google App Engine
This is Rietveld 408576698