| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2009 Google Inc. All rights reserved. | 2 * Copyright (C) 2009 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 AXMediaMuteButton, | 66 AXMediaMuteButton, |
| 67 AXMediaMuteButtonHelp, | 67 AXMediaMuteButtonHelp, |
| 68 AXMediaOverflowButton, | 68 AXMediaOverflowButton, |
| 69 AXMediaOverflowButtonHelp, | 69 AXMediaOverflowButtonHelp, |
| 70 AXMediaPauseButton, | 70 AXMediaPauseButton, |
| 71 AXMediaPauseButtonHelp, | 71 AXMediaPauseButtonHelp, |
| 72 AXMediaPlayButton, | 72 AXMediaPlayButton, |
| 73 AXMediaPlayButtonHelp, | 73 AXMediaPlayButtonHelp, |
| 74 AXMediaShowClosedCaptionsButton, | 74 AXMediaShowClosedCaptionsButton, |
| 75 AXMediaShowClosedCaptionsButtonHelp, | 75 AXMediaShowClosedCaptionsButtonHelp, |
| 76 AXMediaRemotingCastIcon, |
| 77 AXMediaRemotingCastIconHelp, |
| 76 AXMediaSlider, // Deprecated. | 78 AXMediaSlider, // Deprecated. |
| 77 AXMediaSliderThumb, // Deprecated. | 79 AXMediaSliderThumb, // Deprecated. |
| 78 AXMediaSliderThumbHelp, // Deprecated. | 80 AXMediaSliderThumbHelp, // Deprecated. |
| 79 AXMediaStatusDisplay, | 81 AXMediaStatusDisplay, |
| 80 AXMediaStatusDisplayHelp, | 82 AXMediaStatusDisplayHelp, |
| 81 AXMediaTimeRemainingDisplay, | 83 AXMediaTimeRemainingDisplay, |
| 82 AXMediaTimeRemainingDisplayHelp, | 84 AXMediaTimeRemainingDisplayHelp, |
| 83 AXMediaUnMuteButton, | 85 AXMediaUnMuteButton, |
| 84 AXMediaUnMuteButtonHelp, | 86 AXMediaUnMuteButtonHelp, |
| 85 AXMediaVideoElement, | 87 AXMediaVideoElement, |
| (...skipping 11 matching lines...) Expand all Loading... |
| 97 CalendarToday, | 99 CalendarToday, |
| 98 DateFormatDayInMonthLabel, | 100 DateFormatDayInMonthLabel, |
| 99 DateFormatMonthLabel, | 101 DateFormatMonthLabel, |
| 100 DateFormatYearLabel, | 102 DateFormatYearLabel, |
| 101 DetailsLabel, | 103 DetailsLabel, |
| 102 DownloadButtonLabel, | 104 DownloadButtonLabel, |
| 103 FileButtonChooseFileLabel, | 105 FileButtonChooseFileLabel, |
| 104 FileButtonChooseMultipleFilesLabel, | 106 FileButtonChooseMultipleFilesLabel, |
| 105 FileButtonNoFileSelectedLabel, | 107 FileButtonNoFileSelectedLabel, |
| 106 InputElementAltText, | 108 InputElementAltText, |
| 109 MediaRemotingDisableText, |
| 107 MissingPluginText, | 110 MissingPluginText, |
| 108 MultipleFileUploadText, | 111 MultipleFileUploadText, |
| 109 OtherColorLabel, | 112 OtherColorLabel, |
| 110 OtherDateLabel, | 113 OtherDateLabel, |
| 111 OtherMonthLabel, | 114 OtherMonthLabel, |
| 112 OtherTimeLabel, | 115 OtherTimeLabel, |
| 113 OtherWeekLabel, | 116 OtherWeekLabel, |
| 114 OverflowMenuCaptions, | 117 OverflowMenuCaptions, |
| 115 OverflowMenuCast, | 118 OverflowMenuCast, |
| 116 OverflowMenuEnterFullscreen, | 119 OverflowMenuEnterFullscreen, |
| (...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 ValidationValueMissingForRadio, | 177 ValidationValueMissingForRadio, |
| 175 ValidationValueMissingForSelect, | 178 ValidationValueMissingForSelect, |
| 176 WeekFormatTemplate, | 179 WeekFormatTemplate, |
| 177 WeekNumberLabel, | 180 WeekNumberLabel, |
| 178 }; | 181 }; |
| 179 }; | 182 }; |
| 180 | 183 |
| 181 } // namespace blink | 184 } // namespace blink |
| 182 | 185 |
| 183 #endif | 186 #endif |
| OLD | NEW |