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

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: Created 6 years, 7 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 | « no previous file | Source/core/css/CSSValueKeywords.in » ('j') | Source/core/css/mediaControls.css » ('J')
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 MediaCastOnButtonPart:
453 m_value.valueID = CSSValueMediaCastOnButton;
454 break;
455 case MediaCastOffButtonPart:
456 m_value.valueID = CSSValueMediaCastOffButton;
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 4417 matching lines...) Expand 10 before | Expand all | Expand 10 after
4879 default: 4885 default:
4880 break; 4886 break;
4881 } 4887 }
4882 ASSERT_NOT_REACHED(); 4888 ASSERT_NOT_REACHED();
4883 return ScrollBehaviorInstant; 4889 return ScrollBehaviorInstant;
4884 } 4890 }
4885 4891
4886 } 4892 }
4887 4893
4888 #endif 4894 #endif
OLDNEW
« no previous file with comments | « no previous file | Source/core/css/CSSValueKeywords.in » ('j') | Source/core/css/mediaControls.css » ('J')

Powered by Google App Engine
This is Rietveld 408576698