| 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 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 break; | 464 break; |
| 465 case MenulistTextPart: | 465 case MenulistTextPart: |
| 466 m_value.valueID = CSSValueMenulistText; | 466 m_value.valueID = CSSValueMenulistText; |
| 467 break; | 467 break; |
| 468 case MenulistTextFieldPart: | 468 case MenulistTextFieldPart: |
| 469 m_value.valueID = CSSValueMenulistTextfield; | 469 m_value.valueID = CSSValueMenulistTextfield; |
| 470 break; | 470 break; |
| 471 case MeterPart: | 471 case MeterPart: |
| 472 m_value.valueID = CSSValueMeter; | 472 m_value.valueID = CSSValueMeter; |
| 473 break; | 473 break; |
| 474 case RelevancyLevelIndicatorPart: | |
| 475 m_value.valueID = CSSValueRelevancyLevelIndicator; | |
| 476 break; | |
| 477 case ContinuousCapacityLevelIndicatorPart: | |
| 478 m_value.valueID = CSSValueContinuousCapacityLevelIndicator; | |
| 479 break; | |
| 480 case DiscreteCapacityLevelIndicatorPart: | |
| 481 m_value.valueID = CSSValueDiscreteCapacityLevelIndicator; | |
| 482 break; | |
| 483 case RatingLevelIndicatorPart: | |
| 484 m_value.valueID = CSSValueRatingLevelIndicator; | |
| 485 break; | |
| 486 case ProgressBarPart: | 474 case ProgressBarPart: |
| 487 m_value.valueID = CSSValueProgressBar; | 475 m_value.valueID = CSSValueProgressBar; |
| 488 break; | 476 break; |
| 489 case ProgressBarValuePart: | 477 case ProgressBarValuePart: |
| 490 m_value.valueID = CSSValueProgressBarValue; | 478 m_value.valueID = CSSValueProgressBarValue; |
| 491 break; | 479 break; |
| 492 case SliderHorizontalPart: | 480 case SliderHorizontalPart: |
| 493 m_value.valueID = CSSValueSliderHorizontal; | 481 m_value.valueID = CSSValueSliderHorizontal; |
| 494 break; | 482 break; |
| 495 case SliderVerticalPart: | 483 case SliderVerticalPart: |
| (...skipping 4167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4663 default: | 4651 default: |
| 4664 break; | 4652 break; |
| 4665 } | 4653 } |
| 4666 ASSERT_NOT_REACHED(); | 4654 ASSERT_NOT_REACHED(); |
| 4667 return ContainsNone; | 4655 return ContainsNone; |
| 4668 } | 4656 } |
| 4669 | 4657 |
| 4670 } // namespace blink | 4658 } // namespace blink |
| 4671 | 4659 |
| 4672 #endif | 4660 #endif |
| OLD | NEW |