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

  /external/chromium_org/ui/events/
event_source.h 19 // EventSource receives events from the native platform (e.g. X11, win32 etc.)
21 class EVENTS_EXPORT EventSource {
23 EventSource();
24 virtual ~EventSource();
30 // EventSource before the rewriter is destroyed. The EventSource
44 DISALLOW_COPY_AND_ASSIGN(EventSource);
event_source.cc 14 EventSource::EventSource() {}
16 EventSource::~EventSource() {}
18 void EventSource::AddEventRewriter(EventRewriter* rewriter) {
25 void EventSource::RemoveEventRewriter(EventRewriter* rewriter) {
32 EventDispatchDetails EventSource::SendEventToProcessor(Event* event) {
70 EventDispatchDetails EventSource::DeliverEventToProcessor(Event* event) {
  /external/chromium_org/remoting/webapp/
base.js 280 * base.extend(SmokeDetector, base.EventSource);
295 * Helper interface for the EventSource.
308 base.EventSource = function() {
314 * @param {base.EventSource} obj
317 base.EventSource.isDefined = function(obj, type) {
324 base.EventSource.prototype = {
335 * @this {base.EventSource}
351 base.EventSource.isDefined(this, type);
364 base.EventSource.isDefined(this, type);
386 base.EventSource.isDefined(this, type)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
EventSource.cpp 34 #include "core/page/EventSource.h"
60 const unsigned long long EventSource::defaultReconnectDelay = 3000;
62 inline EventSource::EventSource(ExecutionContext* context, const KURL& url, const EventSourceInit& eventSourceInit)
68 , m_connectTimer(this, &EventSource::connectTimerFired)
75 PassRefPtrWillBeRawPtr<EventSource> EventSource::create(ExecutionContext* context, const String& url, const EventSourceInit& eventSourceInit, ExceptionState& exceptionState)
78 exceptionState.throwDOMException(SyntaxError, "Cannot open an EventSource to an empty URL.");
84 exceptionState.throwDOMException(SyntaxError, "Cannot open an EventSource to '" + url + "'. The URL is invalid.");
100 RefPtrWillBeRawPtr<EventSource> source = adoptRefWillBeNoop(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 64 enum EventSource {
91 EventSource event_source);
106 EventSource event_source() const { return event_source_; }
453 EventSource event_source_;

Completed in 203 milliseconds