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 467 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
478 break; | 478 break; |
479 case MediaFullScreenVolumeSliderThumbPart: | 479 case MediaFullScreenVolumeSliderThumbPart: |
480 m_value.valueID = CSSValueMediaFullscreenVolumeSliderThumb; | 480 m_value.valueID = CSSValueMediaFullscreenVolumeSliderThumb; |
481 break; | 481 break; |
482 case MediaCurrentTimePart: | 482 case MediaCurrentTimePart: |
483 m_value.valueID = CSSValueMediaCurrentTimeDisplay; | 483 m_value.valueID = CSSValueMediaCurrentTimeDisplay; |
484 break; | 484 break; |
485 case MediaTimeRemainingPart: | 485 case MediaTimeRemainingPart: |
486 m_value.valueID = CSSValueMediaTimeRemainingDisplay; | 486 m_value.valueID = CSSValueMediaTimeRemainingDisplay; |
487 break; | 487 break; |
| 488 case MediaTrackSelectionCheckmarkPart: |
| 489 m_value.valueID = CSSValueMediaTrackSelectionCheckmark; |
| 490 break; |
488 case MenulistPart: | 491 case MenulistPart: |
489 m_value.valueID = CSSValueMenulist; | 492 m_value.valueID = CSSValueMenulist; |
490 break; | 493 break; |
491 case MenulistButtonPart: | 494 case MenulistButtonPart: |
492 m_value.valueID = CSSValueMenulistButton; | 495 m_value.valueID = CSSValueMenulistButton; |
493 break; | 496 break; |
494 case MenulistTextPart: | 497 case MenulistTextPart: |
495 m_value.valueID = CSSValueMenulistText; | 498 m_value.valueID = CSSValueMenulistText; |
496 break; | 499 break; |
497 case MenulistTextFieldPart: | 500 case MenulistTextFieldPart: |
(...skipping 4203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4701 default: | 4704 default: |
4702 break; | 4705 break; |
4703 } | 4706 } |
4704 ASSERT_NOT_REACHED(); | 4707 ASSERT_NOT_REACHED(); |
4705 return ScrollBehaviorAuto; | 4708 return ScrollBehaviorAuto; |
4706 } | 4709 } |
4707 | 4710 |
4708 } | 4711 } |
4709 | 4712 |
4710 #endif | 4713 #endif |
OLD | NEW |