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

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

Issue 291163004: Implement media cast buttons (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Reenable previously crashing tests - now fixed Created 6 years, 3 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
« no previous file with comments | « Source/core/accessibility/AXMediaControls.cpp ('k') | Source/core/css/CSSSelector.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 431 matching lines...) Expand 10 before | Expand all | Expand 10 after
442 break; 442 break;
443 case MediaOverlayPlayButtonPart: 443 case MediaOverlayPlayButtonPart:
444 m_value.valueID = CSSValueMediaOverlayPlayButton; 444 m_value.valueID = CSSValueMediaOverlayPlayButton;
445 break; 445 break;
446 case MediaMuteButtonPart: 446 case MediaMuteButtonPart:
447 m_value.valueID = CSSValueMediaMuteButton; 447 m_value.valueID = CSSValueMediaMuteButton;
448 break; 448 break;
449 case MediaToggleClosedCaptionsButtonPart: 449 case MediaToggleClosedCaptionsButtonPart:
450 m_value.valueID = CSSValueMediaToggleClosedCaptionsButton; 450 m_value.valueID = CSSValueMediaToggleClosedCaptionsButton;
451 break; 451 break;
452 case MediaCastOffButtonPart:
453 m_value.valueID = CSSValueInternalMediaCastOffButton;
454 break;
455 case MediaOverlayCastOffButtonPart:
456 m_value.valueID = CSSValueInternalMediaOverlayCastOffButton;
457 break;
452 case MediaSliderPart: 458 case MediaSliderPart:
453 m_value.valueID = CSSValueMediaSlider; 459 m_value.valueID = CSSValueMediaSlider;
454 break; 460 break;
455 case MediaSliderThumbPart: 461 case MediaSliderThumbPart:
456 m_value.valueID = CSSValueMediaSliderthumb; 462 m_value.valueID = CSSValueMediaSliderthumb;
457 break; 463 break;
458 case MediaVolumeSliderContainerPart: 464 case MediaVolumeSliderContainerPart:
459 m_value.valueID = CSSValueMediaVolumeSliderContainer; 465 m_value.valueID = CSSValueMediaVolumeSliderContainer;
460 break; 466 break;
461 case MediaVolumeSliderPart: 467 case MediaVolumeSliderPart:
(...skipping 4381 matching lines...) Expand 10 before | Expand all | Expand 10 after
4843 default: 4849 default:
4844 break; 4850 break;
4845 } 4851 }
4846 ASSERT_NOT_REACHED(); 4852 ASSERT_NOT_REACHED();
4847 return ScrollBehaviorInstant; 4853 return ScrollBehaviorInstant;
4848 } 4854 }
4849 4855
4850 } 4856 }
4851 4857
4852 #endif 4858 #endif
OLDNEW
« no previous file with comments | « Source/core/accessibility/AXMediaControls.cpp ('k') | Source/core/css/CSSSelector.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698