Searched defs:WebGLContextEvent (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLContextEvent.cpp27 #include "core/html/canvas/WebGLContextEvent.h"
37 WebGLContextEvent::WebGLContextEvent() function in class:WebCore::WebGLContextEvent
42 WebGLContextEvent::WebGLContextEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage) function in class:WebCore::WebGLContextEvent
49 WebGLContextEvent::WebGLContextEvent(const AtomicString& type, const WebGLContextEventInit& initializer) function in class:WebCore::WebGLContextEvent
56 WebGLContextEvent::~WebGLContextEvent()
60 const AtomicString& WebGLContextEvent
[all...]
H A DWebGLContextEvent.h39 class WebGLContextEvent : public Event { class in namespace:WebCore
41 static PassRefPtr<WebGLContextEvent> create()
43 return adoptRef(new WebGLContextEvent);
45 static PassRefPtr<WebGLContextEvent> create(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage)
47 return adoptRef(new WebGLContextEvent(type, canBubble, cancelable, statusMessage));
49 static PassRefPtr<WebGLContextEvent> create(const AtomicString& type, const WebGLContextEventInit& initializer)
51 return adoptRef(new WebGLContextEvent(type, initializer));
53 virtual ~WebGLContextEvent();
60 WebGLContextEvent();
61 WebGLContextEvent(cons
[all...]

Completed in 225 milliseconds