HomeSort by relevance Sort by last modified time
    Searched defs:WebGLContextEvent (Results 1 - 2 of 2) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/html/canvas/
WebGLContextEvent.cpp 27 #include "core/html/canvas/WebGLContextEvent.h"
37 WebGLContextEvent::WebGLContextEvent()
42 WebGLContextEvent::WebGLContextEvent(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage)
49 WebGLContextEvent::WebGLContextEvent(const AtomicString& type, const WebGLContextEventInit& initializer)
56 WebGLContextEvent::~WebGLContextEvent()
60 const AtomicString& WebGLContextEvent::interfaceName() cons
    [all...]
WebGLContextEvent.h 39 class WebGLContextEvent : public Event {
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(const AtomicString& type, bool canBubble, bool cancelable, const String& statusMessage)
    [all...]

Completed in 3091 milliseconds