| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (c) 2013, Opera Software ASA. All rights reserved. | 2 * Copyright (c) 2013, Opera Software ASA. 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 | 5 * modification, are permitted provided that the following conditions |
| 6 * are met: | 6 * are met: |
| 7 * 1. Redistributions of source code must retain the above copyright | 7 * 1. Redistributions of source code must retain the above copyright |
| 8 * notice, this list of conditions and the following disclaimer. | 8 * notice, this list of conditions and the following disclaimer. |
| 9 * 2. Redistributions in binary form must reproduce the above copyright | 9 * 2. Redistributions in binary form must reproduce the above copyright |
| 10 * notice, this list of conditions and the following disclaimer in the | 10 * notice, this list of conditions and the following disclaimer in the |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 74 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(mouseout); | 74 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(mouseout); |
| 75 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(mouseover); | 75 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(mouseover); |
| 76 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(mouseup); | 76 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(mouseup); |
| 77 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(mousewheel); | 77 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(mousewheel); |
| 78 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(pause); | 78 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(pause); |
| 79 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(play); | 79 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(play); |
| 80 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(playing); | 80 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(playing); |
| 81 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(progress); | 81 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(progress); |
| 82 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(ratechange); | 82 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(ratechange); |
| 83 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(reset); | 83 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(reset); |
| 84 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(resize); |
| 84 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(scroll); | 85 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(scroll); |
| 85 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(seeked); | 86 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(seeked); |
| 86 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(seeking); | 87 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(seeking); |
| 87 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(select); | 88 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(select); |
| 88 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(show); | 89 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(show); |
| 89 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(stalled); | 90 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(stalled); |
| 90 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(submit); | 91 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(submit); |
| 91 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(suspend); | 92 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(suspend); |
| 92 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(timeupdate); | 93 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(timeupdate); |
| 93 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(volumechange); | 94 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(volumechange); |
| 94 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(waiting); | 95 DEFINE_STATIC_ATTRIBUTE_EVENT_LISTENER(waiting); |
| 95 } | 96 } |
| 96 | 97 |
| 97 } // namespace | 98 } // namespace |
| 98 | 99 |
| 99 #endif | 100 #endif |
| OLD | NEW |