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

Side by Side Diff: Source/core/css/CSSPrimitiveValueMappings.h

Issue 1082533002: Support text track selection in video controls (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 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 unified diff | Download patch
OLDNEW
1 /* 1 /*
2 * Copyright (C) 2007 Alexey Proskuryakov <ap@nypop.com>. 2 * Copyright (C) 2007 Alexey Proskuryakov <ap@nypop.com>.
3 * Copyright (C) 2008, 2009, 2010, 2011 Apple Inc. All rights reserved. 3 * Copyright (C) 2008, 2009, 2010, 2011 Apple Inc. All rights reserved.
4 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/) 4 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved. (http://www.torchmo bile.com/)
5 * Copyright (C) 2009 Jeff Schiller <codedread@gmail.com> 5 * Copyright (C) 2009 Jeff Schiller <codedread@gmail.com>
6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
7 * 7 *
8 * Redistribution and use in source and binary forms, with or without 8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions 9 * modification, are permitted provided that the following conditions
10 * are met: 10 * are met:
(...skipping 467 matching lines...) Expand 10 before | Expand all | Expand 10 after
478 break; 478 break;
479 case MediaFullScreenVolumeSliderThumbPart: 479 case MediaFullScreenVolumeSliderThumbPart:
480 m_value.valueID = CSSValueMediaFullscreenVolumeSliderThumb; 480 m_value.valueID = CSSValueMediaFullscreenVolumeSliderThumb;
481 break; 481 break;
482 case MediaCurrentTimePart: 482 case MediaCurrentTimePart:
483 m_value.valueID = CSSValueMediaCurrentTimeDisplay; 483 m_value.valueID = CSSValueMediaCurrentTimeDisplay;
484 break; 484 break;
485 case MediaTimeRemainingPart: 485 case MediaTimeRemainingPart:
486 m_value.valueID = CSSValueMediaTimeRemainingDisplay; 486 m_value.valueID = CSSValueMediaTimeRemainingDisplay;
487 break; 487 break;
488 case MediaTrackSelectionCheckmarkPart:
489 m_value.valueID = CSSValueMediaTrackSelectionCheckmark;
490 break;
488 case MenulistPart: 491 case MenulistPart:
489 m_value.valueID = CSSValueMenulist; 492 m_value.valueID = CSSValueMenulist;
490 break; 493 break;
491 case MenulistButtonPart: 494 case MenulistButtonPart:
492 m_value.valueID = CSSValueMenulistButton; 495 m_value.valueID = CSSValueMenulistButton;
493 break; 496 break;
494 case MenulistTextPart: 497 case MenulistTextPart:
495 m_value.valueID = CSSValueMenulistText; 498 m_value.valueID = CSSValueMenulistText;
496 break; 499 break;
497 case MenulistTextFieldPart: 500 case MenulistTextFieldPart:
(...skipping 4208 matching lines...) Expand 10 before | Expand all | Expand 10 after
4706 default: 4709 default:
4707 break; 4710 break;
4708 } 4711 }
4709 ASSERT_NOT_REACHED(); 4712 ASSERT_NOT_REACHED();
4710 return ScrollBehaviorAuto; 4713 return ScrollBehaviorAuto;
4711 } 4714 }
4712 4715
4713 } 4716 }
4714 4717
4715 #endif 4718 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698