| 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. (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 438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 449 break; | 449 break; |
| 450 case MediaFullScreenVolumeSliderThumbPart: | 450 case MediaFullScreenVolumeSliderThumbPart: |
| 451 m_value.valueID = CSSValueMediaFullscreenVolumeSliderThumb; | 451 m_value.valueID = CSSValueMediaFullscreenVolumeSliderThumb; |
| 452 break; | 452 break; |
| 453 case MediaCurrentTimePart: | 453 case MediaCurrentTimePart: |
| 454 m_value.valueID = CSSValueMediaCurrentTimeDisplay; | 454 m_value.valueID = CSSValueMediaCurrentTimeDisplay; |
| 455 break; | 455 break; |
| 456 case MediaTimeRemainingPart: | 456 case MediaTimeRemainingPart: |
| 457 m_value.valueID = CSSValueMediaTimeRemainingDisplay; | 457 m_value.valueID = CSSValueMediaTimeRemainingDisplay; |
| 458 break; | 458 break; |
| 459 case MediaTrackSelectionCheckmarkPart: |
| 460 m_value.valueID = CSSValueMediaTrackSelectionCheckmark; |
| 461 break; |
| 462 case MediaClosedCaptionsIconPart: |
| 463 m_value.valueID = CSSValueMediaClosedCaptionsIcon; |
| 464 break; |
| 465 case MediaSubtitlesIconPart: |
| 466 m_value.valueID = CSSValueMediaSubtitlesIcon; |
| 467 break; |
| 459 case MenulistPart: | 468 case MenulistPart: |
| 460 m_value.valueID = CSSValueMenulist; | 469 m_value.valueID = CSSValueMenulist; |
| 461 break; | 470 break; |
| 462 case MenulistButtonPart: | 471 case MenulistButtonPart: |
| 463 m_value.valueID = CSSValueMenulistButton; | 472 m_value.valueID = CSSValueMenulistButton; |
| 464 break; | 473 break; |
| 465 case MenulistTextPart: | 474 case MenulistTextPart: |
| 466 m_value.valueID = CSSValueMenulistText; | 475 m_value.valueID = CSSValueMenulistText; |
| 467 break; | 476 break; |
| 468 case MenulistTextFieldPart: | 477 case MenulistTextFieldPart: |
| (...skipping 4194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4663 default: | 4672 default: |
| 4664 break; | 4673 break; |
| 4665 } | 4674 } |
| 4666 ASSERT_NOT_REACHED(); | 4675 ASSERT_NOT_REACHED(); |
| 4667 return ContainsNone; | 4676 return ContainsNone; |
| 4668 } | 4677 } |
| 4669 | 4678 |
| 4670 } // namespace blink | 4679 } // namespace blink |
| 4671 | 4680 |
| 4672 #endif | 4681 #endif |
| OLD | NEW |