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

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

Issue 2760063003: Remove the -webkit-fullscreen-volume-* pseudos, they're dead code. (Closed)
Patch Set: Created 3 years, 9 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 | third_party/WebKit/Source/core/css/CSSValueKeywords.json5 » ('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. 4 * Copyright (C) 2009 Torch Mobile Inc. All rights reserved.
5 * (http://www.torchmobile.com/) 5 * (http://www.torchmobile.com/)
6 * Copyright (C) 2009 Jeff Schiller <codedread@gmail.com> 6 * Copyright (C) 2009 Jeff Schiller <codedread@gmail.com>
7 * Copyright (C) Research In Motion Limited 2010. All rights reserved. 7 * Copyright (C) Research In Motion Limited 2010. All rights reserved.
8 * 8 *
9 * Redistribution and use in source and binary forms, with or without 9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions 10 * modification, are permitted provided that the following conditions
(...skipping 385 matching lines...) Expand 10 before | Expand all | Expand 10 after
396 break; 396 break;
397 case MediaVolumeSliderThumbPart: 397 case MediaVolumeSliderThumbPart:
398 m_valueID = CSSValueMediaVolumeSliderthumb; 398 m_valueID = CSSValueMediaVolumeSliderthumb;
399 break; 399 break;
400 case MediaControlsBackgroundPart: 400 case MediaControlsBackgroundPart:
401 m_valueID = CSSValueMediaControlsBackground; 401 m_valueID = CSSValueMediaControlsBackground;
402 break; 402 break;
403 case MediaControlsFullscreenBackgroundPart: 403 case MediaControlsFullscreenBackgroundPart:
404 m_valueID = CSSValueMediaControlsFullscreenBackground; 404 m_valueID = CSSValueMediaControlsFullscreenBackground;
405 break; 405 break;
406 case MediaFullscreenVolumeSliderPart:
407 m_valueID = CSSValueMediaFullscreenVolumeSlider;
408 break;
409 case MediaFullscreenVolumeSliderThumbPart:
410 m_valueID = CSSValueMediaFullscreenVolumeSliderThumb;
411 break;
412 case MediaCurrentTimePart: 406 case MediaCurrentTimePart:
413 m_valueID = CSSValueMediaCurrentTimeDisplay; 407 m_valueID = CSSValueMediaCurrentTimeDisplay;
414 break; 408 break;
415 case MediaTimeRemainingPart: 409 case MediaTimeRemainingPart:
416 m_valueID = CSSValueMediaTimeRemainingDisplay; 410 m_valueID = CSSValueMediaTimeRemainingDisplay;
417 break; 411 break;
418 case MediaTrackSelectionCheckmarkPart: 412 case MediaTrackSelectionCheckmarkPart:
419 m_valueID = CSSValueInternalMediaTrackSelectionCheckmark; 413 m_valueID = CSSValueInternalMediaTrackSelectionCheckmark;
420 break; 414 break;
421 case MediaClosedCaptionsIconPart: 415 case MediaClosedCaptionsIconPart:
(...skipping 3127 matching lines...) Expand 10 before | Expand all | Expand 10 after
3549 default: 3543 default:
3550 break; 3544 break;
3551 } 3545 }
3552 ASSERT_NOT_REACHED(); 3546 ASSERT_NOT_REACHED();
3553 return ContainsNone; 3547 return ContainsNone;
3554 } 3548 }
3555 3549
3556 } // namespace blink 3550 } // namespace blink
3557 3551
3558 #endif 3552 #endif
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/css/CSSValueKeywords.json5 » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698