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

Side by Side Diff: ui/aura/dispatcher_win.cc

Issue 9958152: Consolidate win/x dispatchers (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: cleanup Created 8 years, 8 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/basictypes.h" 5 #include "base/basictypes.h"
6 #include "base/compiler_specific.h" 6 #include "base/compiler_specific.h"
7 #include "base/message_loop.h" 7 #include "base/message_loop.h"
8 8
9 namespace aura { 9 namespace aura {
10 10
11 class DispatcherWin : public MessageLoop::Dispatcher { 11 class DispatcherWin : public MessageLoop::Dispatcher {
12 public: 12 public:
13 DispatcherWin() {} 13 DispatcherWin() {}
14 virtual ~DispatcherWin() {} 14 virtual ~DispatcherWin() {}
15 15
16 // Overridden from MessageLoop::Dispatcher: 16 // Overridden from MessageLoop::Dispatcher:
17 virtual bool Dispatch(const MSG& msg) OVERRIDE; 17 virtual base::DispatchStatus Dispatch(
18 const base::NativeEvent& event) OVERRIDE;
18 19
19 private: 20 private:
20 DISALLOW_COPY_AND_ASSIGN(DispatcherWin); 21 DISALLOW_COPY_AND_ASSIGN(DispatcherWin);
21 }; 22 };
22 23
23 bool DispatcherWin::Dispatch(const MSG& msg) { 24 base::DispatchStatus DispatcherWin::Dispatch(const base::NativeEvent& msg) {
24 TranslateMessage(&msg); 25 TranslateMessage(&msg);
25 DispatchMessage(&msg); 26 DispatchMessage(&msg);
26 return true; 27 return base::EVENT_PROCESSED;
27 } 28 }
28 29
29 MessageLoop::Dispatcher* CreateDispatcher() { 30 MessageLoop::Dispatcher* CreateDispatcher() {
30 return new DispatcherWin; 31 return new DispatcherWin;
31 } 32 }
32 33
33 } // namespace aura 34 } // namespace aura
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698