HomeSort by relevance Sort by last modified time
    Searched refs:EventSource (Results 1 - 25 of 118) sorted by null

1 2 3 4 5

  /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/third_party/WebKit/Source/core/page/
EventSource.h 53 class EventSource FINAL : public RefCountedWillBeGarbageCollectedFinalized<EventSource>, public EventTargetWithInlineData, private ThreadableLoaderClient, public ActiveDOMObject {
55 REFCOUNTED_EVENT_TARGET(EventSource);
56 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(EventSource);
59 static PassRefPtrWillBeRawPtr<EventSource> create(ExecutionContext*, const String& url, const EventSourceInit&, ExceptionState&);
60 virtual ~EventSource();
94 EventSource(ExecutionContext*, const KURL&, const EventSourceInit&);
107 void connectTimerFired(Timer<EventSource>*);
119 Timer<EventSource> m_connectTimer;
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...]
EventSource.idl 39 ] interface EventSource : EventTarget {
  /external/chromium_org/chrome/browser/chromeos/events/
event_rewriter_controller.h 17 class EventSource;
23 // windows |EventSource|s, current and future, in the order that they are
42 typedef std::list<ui::EventSource*> EventSourceList;
45 void AddToEventSource(ui::EventSource* source);
event_rewriter_controller.cc 21 // Remove the rewriters from every root window EventSource and destroy them.
45 // Add the rewriters to each existing root window EventSource.
59 void EventRewriterController::AddToEventSource(ui::EventSource* source) {
  /external/chromium_org/mojo/aura/
window_tree_host_mojo.h 24 public ui::EventSource,
40 return ui::EventSource::SendEventToProcessor(event);
45 virtual ui::EventSource* GetEventSource() OVERRIDE;
59 // ui::EventSource:
window_tree_host_mojo.cc 100 ui::EventSource* WindowTreeHostMojo::GetEventSource() {
153 // WindowTreeHostMojo, ui::EventSource implementation:
  /external/chromium_org/ui/events/test/
events_test_utils.h 14 class EventSource;
89 explicit EventSourceTestApi(EventSource* event_source);
96 EventSource* event_source_;
events_test_utils.cc 27 EventSourceTestApi::EventSourceTestApi(EventSource* event_source)
  /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/ui/aura/
window_tree_host_ozone.h 21 public ui::EventSource,
41 virtual ui::EventSource* GetEventSource() OVERRIDE;
55 // ui::EventSource overrides.
window_tree_host_win.h 20 public ui::EventSource,
27 virtual ui::EventSource* GetEventSource() OVERRIDE;
41 // ui::EventSource:
window_tree_host_x11.h 33 public ui::EventSource,
45 virtual ui::EventSource* GetEventSource() OVERRIDE;
59 // ui::EventSource overrides.
window_tree_host_mac.h 33 virtual ui::EventSource* GetEventSource() OVERRIDE;
remote_window_tree_host_win.h 43 public ui::EventSource,
119 virtual ui::EventSource* GetEventSource() OVERRIDE;
133 // ui::EventSource:
window_tree_host_ozone.cc 61 ui::EventSource* WindowTreeHostOzone::GetEventSource() {
  /external/chromium_org/ui/aura/test/
event_generator_delegate_aura.h 39 virtual ui::EventSource* GetEventSource(ui::EventTarget* target) OVERRIDE;
event_generator_delegate_aura.cc 78 ui::EventSource* EventGeneratorDelegateAura::GetEventSource(
  /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_;
  /external/chromium_org/remoting/webapp/
fullscreen_v1.js 27 * @type {base.EventSource}
30 this.eventSource_ = new base.EventSource();
hangout_session.js 74 * @type {base.EventSource}
76 remoting.hangoutSessionEvents = new base.EventSource();
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...]
fullscreen_v2.js 36 * @type {base.EventSource}
39 this.eventSource_ = new base.EventSource();

Completed in 1383 milliseconds

1 2 3 4 5