Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(95)

Side by Side Diff: ui/aura/device_list_updater_aurax11.h

Issue 10895020: Merge aura::DispatcherLinux into base::MessagePumpAuraX11. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fixes for sadrul Created 8 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « ui/aura/aura.gyp ('k') | ui/aura/device_list_updater_aurax11.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef UI_AURA_DEVICE_LIST_UPDATER_AURAX11_H_
6 #define UI_AURA_DEVICE_LIST_UPDATER_AURAX11_H_
7
8 #include "base/basictypes.h"
9 #include "base/compiler_specific.h"
10 #include "base/message_pump_observer.h"
11
12 namespace aura {
13
14 // Filters out global XInput notifications and updates the DeviceList.
15 class DeviceListUpdaterAuraX11 : public base::MessagePumpObserver {
16 public:
17 DeviceListUpdaterAuraX11();
18 virtual ~DeviceListUpdaterAuraX11();
19
20 // Overridden from base::MessagePumpObserver:
21 virtual base::EventStatus WillProcessEvent(
22 const base::NativeEvent& event) OVERRIDE;
23 virtual void DidProcessEvent(
24 const base::NativeEvent& event) OVERRIDE;
25
26 private:
27 DISALLOW_COPY_AND_ASSIGN(DeviceListUpdaterAuraX11);
28 };
29
30 } // namespace aura
31
32 #endif // UI_AURA_DEVICE_LIST_UPDATER_AURAX11_H_
OLDNEW
« no previous file with comments | « ui/aura/aura.gyp ('k') | ui/aura/device_list_updater_aurax11.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698