summaryrefslogtreecommitdiffstats
path: root/chromium/ui/events/event_source.h
blob: f8da9e6635e96decf45fe839c09d78cce0e05a6d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef UI_EVENTS_EVENT_SOURCE_H_
#define UI_EVENTS_EVENT_SOURCE_H_

#include "ui/events/events_export.h"

namespace ui {

class Event;
class EventProcessor;

// EventSource receives events from the native platform (e.g. X11, win32 etc.)
// and sends the events to an EventProcessor.
class EVENTS_EXPORT EventSource {
 public:
  virtual ~EventSource() {}

  virtual EventProcessor* GetEventProcessor() = 0;

 protected:
  void SendEventToProcessor(Event* event);
};

}  // namespace ui

#endif // UI_EVENTS_EVENT_SOURCE_H_