OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2008 Apple Inc. All Rights Reserved. | 2 * Copyright (C) 2008 Apple 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 | 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 19 matching lines...) Expand all Loading... |
30 | 30 |
31 namespace JSC { | 31 namespace JSC { |
32 class ExecState; | 32 class ExecState; |
33 } | 33 } |
34 | 34 |
35 namespace WebCore { | 35 namespace WebCore { |
36 | 36 |
37 class EventTarget; | 37 class EventTarget; |
38 | 38 |
39 JSC::JSValuePtr toJS(JSC::ExecState*, EventTarget*); | 39 JSC::JSValuePtr toJS(JSC::ExecState*, EventTarget*); |
40 EventTarget* toEventTarget(JSC::JSValuePtr); | |
41 | 40 |
42 } // namespace WebCore | 41 } // namespace WebCore |
43 | 42 |
44 #endif // JSEventTarget_h | 43 #endif // JSEventTarget_h |
OLD | NEW |