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 450 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
461 break; | 461 break; |
462 case MediaClosedCaptionsIconPart: | 462 case MediaClosedCaptionsIconPart: |
463 m_value.valueID = CSSValueInternalMediaClosedCaptionsIcon; | 463 m_value.valueID = CSSValueInternalMediaClosedCaptionsIcon; |
464 break; | 464 break; |
465 case MediaSubtitlesIconPart: | 465 case MediaSubtitlesIconPart: |
466 m_value.valueID = CSSValueInternalMediaSubtitlesIcon; | 466 m_value.valueID = CSSValueInternalMediaSubtitlesIcon; |
467 break; | 467 break; |
468 case MediaOverflowMenuButtonPart: | 468 case MediaOverflowMenuButtonPart: |
469 m_value.valueID = CSSValueInternalOverflowMenuButton; | 469 m_value.valueID = CSSValueInternalOverflowMenuButton; |
470 break; | 470 break; |
| 471 case MediaDownloadIconPart: |
| 472 m_value.valueID = CSSValueInternalMediaDownloadIcon; |
| 473 break; |
471 case MenulistPart: | 474 case MenulistPart: |
472 m_value.valueID = CSSValueMenulist; | 475 m_value.valueID = CSSValueMenulist; |
473 break; | 476 break; |
474 case MenulistButtonPart: | 477 case MenulistButtonPart: |
475 m_value.valueID = CSSValueMenulistButton; | 478 m_value.valueID = CSSValueMenulistButton; |
476 break; | 479 break; |
477 case MenulistTextPart: | 480 case MenulistTextPart: |
478 m_value.valueID = CSSValueMenulistText; | 481 m_value.valueID = CSSValueMenulistText; |
479 break; | 482 break; |
480 case MenulistTextFieldPart: | 483 case MenulistTextFieldPart: |
(...skipping 4233 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4714 default: | 4717 default: |
4715 break; | 4718 break; |
4716 } | 4719 } |
4717 ASSERT_NOT_REACHED(); | 4720 ASSERT_NOT_REACHED(); |
4718 return ContainsNone; | 4721 return ContainsNone; |
4719 } | 4722 } |
4720 | 4723 |
4721 } // namespace blink | 4724 } // namespace blink |
4722 | 4725 |
4723 #endif | 4726 #endif |
OLD | NEW |