HomeSort by relevance Sort by last modified time
    Searched refs:EventSource (Results 1 - 25 of 101) 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 54 class EventSource FINAL : public RefCountedWillBeRefCountedGarbageCollected<EventSource>, public ScriptWrappable, public EventTargetWithInlineData, private ThreadableLoaderClient, public ActiveDOMObject {
56 REFCOUNTED_EVENT_TARGET(EventSource);
57 WILL_BE_USING_GARBAGE_COLLECTED_MIXIN(EventSource);
59 static PassRefPtrWillBeRawPtr<EventSource> create(ExecutionContext*, const String& url, const Dictionary&, ExceptionState&);
60 virtual ~EventSource();
92 EventSource(ExecutionContext*, const KURL&, const Dictionary&);
105 void connectTimerFired(Timer<EventSource>*);
117 Timer<EventSource> m_connectTimer;
EventSource.cpp 34 #include "core/page/EventSource.h"
58 const unsigned long long EventSource::defaultReconnectDelay = 3000;
60 inline EventSource::EventSource(ExecutionContext* context, const KURL& url, const Dictionary& eventSourceInit)
66 , m_connectTimer(this, &EventSource::connectTimerFired)
75 PassRefPtrWillBeRawPtr<EventSource> EventSource::create(ExecutionContext* context, const String& url, const Dictionary& 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 = adoptRefWillBeRefCountedGarbageCollected(new EventSource(context, fullURL, eventSourceIn (…)
    [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/ui/events/test/
events_test_utils.h 14 class EventSource;
68 explicit EventSourceTestApi(EventSource* event_source);
75 EventSource* event_source_;
events_test_utils.cc 22 EventSourceTestApi::EventSourceTestApi(EventSource* event_source)
  /external/chromium_org/mojo/aura/
window_tree_host_mojo.h 24 public ui::EventSource,
41 return ui::EventSource::SendEventToProcessor(event);
46 virtual ui::EventSource* GetEventSource() OVERRIDE;
61 // ui::EventSource:
window_tree_host_mojo.cc 100 ui::EventSource* WindowTreeHostMojo::GetEventSource() {
158 // WindowTreeHostMojo, ui::EventSource implementation:
  /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/mojo/services/view_manager/
window_tree_host_impl.h 25 public ui::EventSource,
37 virtual ui::EventSource* GetEventSource() OVERRIDE;
52 // ui::EventSource:
  /external/chromium_org/ui/aura/
window_tree_host_ozone.h 20 public ui::EventSource,
32 virtual ui::EventSource* GetEventSource() OVERRIDE;
47 // ui::EventSource overrides.
window_tree_host_x11.h 33 public ui::EventSource,
45 virtual ui::EventSource* GetEventSource() OVERRIDE;
60 // ui::EventSource overrides.
window_tree_host_win.h 17 public ui::EventSource,
23 virtual ui::EventSource* GetEventSource() OVERRIDE;
38 // ui::EventSource:
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;
134 // ui::EventSource:
window_tree_host.h 119 // Returns the EventSource responsible for dispatching events to the window
121 virtual ui::EventSource* GetEventSource() = 0;
window_tree_host_ozone.cc 47 ui::EventSource* WindowTreeHostOzone::GetEventSource() {
  /external/chromium_org/remoting/webapp/
base.js 136 * base.extend(SmokeDetector, base.EventSource);
151 * Helper interface for the EventSource.
164 base.EventSource = function() {
170 * @param {base.EventSource} obj
173 base.EventSource.isDefined = function(obj, type) {
180 base.EventSource.prototype = {
191 * @this {base.EventSource}
207 base.EventSource.isDefined(this, type);
220 base.EventSource.isDefined(this, type);
242 base.EventSource.isDefined(this, type)
    [all...]
fullscreen_v1.js 27 * @type {base.EventSource}
30 this.eventSource_ = new base.EventSource();
fullscreen_v2.js 42 * @type {base.EventSource}
45 this.eventSource_ = new base.EventSource();
  /external/chromium_org/chrome/browser/ui/views/tabs/
tab_drag_controller.h 71 enum EventSource {
99 EventSource event_source);
114 EventSource event_source() const { return event_source_; }
488 EventSource event_source_;
  /external/chromium_org/ui/views/widget/desktop_aura/
desktop_window_tree_host_x11.h 45 public ui::EventSource,
151 virtual ui::EventSource* GetEventSource() OVERRIDE;
166 // Overridden frm ui::EventSource

Completed in 193 milliseconds

1 2 3 4 5