Searched refs:WebGLContextEvent (Results 1 - 4 of 4) sorted by relevance

/macosx-10.10/WebCore-7600.1.25/html/canvas/
H A DWebGLContextEvent.cpp27 #include "WebGLContextEvent.h"
39 WebGLContextEvent::WebGLContextEvent() function in class:WebCore::WebGLContextEvent
43 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
55 WebGLContextEvent::~WebGLContextEvent()
59 EventInterface 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...]
H A DWebGLContextEvent.idl29 ] interface WebGLContextEvent : Event {
H A DWebGLRenderingContext.cpp70 #include "WebGLContextEvent.h"
402 canvas->dispatchEvent(WebGLContextEvent::create(eventNames().webglcontextcreationerrorEvent, false, true, "Web page was not allowed to create a WebGL context."));
451 canvas->dispatchEvent(WebGLContextEvent::create(eventNames().webglcontextcreationerrorEvent, false, true, "Could not create a WebGL context."));
5928 RefPtr<WebGLContextEvent> event = WebGLContextEvent::create(eventNames().webglcontextlostEvent, false, true, "");
6017 canvas()->dispatchEvent(WebGLContextEvent::create(eventNames().webglcontextrestoredEvent, false, true, ""));

Completed in 101 milliseconds