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

  /external/chromium_org/third_party/WebKit/Source/core/page/
EventSource.h 53 class EventSource : public RefCounted<EventSource>, public ScriptWrappable, public EventTarget, private ThreadableLoaderClient, public ActiveDOMObject {
56 static PassRefPtr<EventSource> create(ScriptExecutionContext*, const String& url, const Dictionary&, ExceptionState&);
57 virtual ~EventSource();
77 using RefCounted<EventSource>::ref;
78 using RefCounted<EventSource>::deref;
86 EventSource(ScriptExecutionContext*, const KURL&, const Dictionary&);
103 void reconnectTimerFired(Timer<EventSource>*);
115 Timer<EventSource> m_reconnectTimer;
EventSource.cpp 34 #include "core/page/EventSource.h"
58 const unsigned long long EventSource::defaultReconnectDelay = 3000;
60 inline EventSource::EventSource(ScriptExecutionContext* context, const KURL& url, const Dictionary& eventSourceInit)
66 , m_reconnectTimer(this, &EventSource::reconnectTimerFired)
75 PassRefPtr<EventSource> EventSource::create(ScriptExecutionContext* context, const String& url, const Dictionary& eventSourceInit, ExceptionState& es)
78 es.throwDOMException(SyntaxError, "Cannot open an EventSource to an empty URL.");
84 es.throwDOMException(SyntaxError, "Cannot open an EventSource to '" + url + "'. The URL is invalid.");
99 RefPtr<EventSource> source = adoptRef(new EventSource(context, fullURL, eventSourceInit))
    [all...]
  /external/mdnsresponder/mDNSShared/
dnsextd.h 108 typedef struct EventSource
115 struct EventSource * next;
116 } EventSource;
151 GenLinkedList eventSources; // linked list of EventSource's
  /external/chromium_org/chrome/browser/ui/views/tabs/
tab_drag_controller.h 77 enum EventSource {
105 EventSource event_source);
124 EventSource event_source() const { return event_source_; }
485 EventSource event_source_;

Completed in 125 milliseconds