| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 |
| OLD | NEW |