tizen beta release
[profile/ivi/webkit-efl.git] / DerivedSources / WebKitDOM_EventListener_Custom.cpp
1 /*
2     Copyright (C) 2011 Samsung Electronics
3
4     This library is free software; you can redistribute it and/or
5     modify it under the terms of the GNU Lesser General Public
6     License as published by the Free Software Foundation; either
7     version 2.1 of the License, or (at your option) any later version.
8
9     This library is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12     Lesser General Public License for more details.
13
14     You should have received a copy of the GNU Lesser General Public
15     License along with this library; if not, write to the Free Software
16     Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
17 */
18
19 #include "config.h"
20 #include "WebKitDOM_EventListener.h"
21 #include "WebKitDOM_EventListener_Private.h"
22
23 #include "WebKitDOM_Event.h"
24 #include "WebKitDOM_Event_Private.h"
25
26 #include "Event.h"
27 #include "EventListener.h"
28 #include "WebKitDOM_String.h"
29 #include "WebKitDOM_String_Private.h"
30 #include <wtf/text/CString.h>
31 #include <wtf/GetPtr.h>
32 #include <wtf/RefPtr.h>
33
34 void ewk_webkitdom_eventlistener_handle_event(WebKitDOM_EventListener* self, const WebKitDOM_Event* evt)
35 {
36     WebCore::EventListener* coreObj = _to_webcore_eventlistener(self);
37
38     coreObj->handleEvent(0, _to_webcore_event(evt) );
39 }
40