OLD | NEW |
1 // Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2013 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/message_pump_linux.h" | 5 #include "base/message_pump_ozone.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "base/message_loop.h" | 8 #include "base/message_loop.h" |
9 | 9 |
10 namespace base { | 10 namespace base { |
11 | 11 |
12 MessagePumpLinux::MessagePumpLinux() | 12 MessagePumpOzone::MessagePumpOzone() |
13 : MessagePumpLibevent() { | 13 : MessagePumpLibevent() { |
14 } | 14 } |
15 | 15 |
16 MessagePumpLinux::~MessagePumpLinux() { | 16 MessagePumpOzone::~MessagePumpOzone() { |
17 } | 17 } |
18 | 18 |
19 void MessagePumpLinux::AddObserver(MessagePumpObserver* /* observer */) { | 19 void MessagePumpOzone::AddObserver(MessagePumpObserver* /* observer */) { |
20 NOTIMPLEMENTED(); | 20 NOTIMPLEMENTED(); |
21 } | 21 } |
22 | 22 |
23 void MessagePumpLinux::RemoveObserver(MessagePumpObserver* /* observer */) { | 23 void MessagePumpOzone::RemoveObserver(MessagePumpObserver* /* observer */) { |
24 NOTIMPLEMENTED(); | 24 NOTIMPLEMENTED(); |
25 } | 25 } |
26 | 26 |
27 // static | 27 // static |
28 MessagePumpLinux* MessagePumpLinux::Current() { | 28 MessagePumpOzone* MessagePumpOzone::Current() { |
29 MessageLoopForUI* loop = MessageLoopForUI::current(); | 29 MessageLoopForUI* loop = MessageLoopForUI::current(); |
30 return static_cast<MessagePumpLinux*>(loop->pump_ui()); | 30 return static_cast<MessagePumpOzone*>(loop->pump_ui()); |
31 } | 31 } |
32 | 32 |
33 void MessagePumpLinux::AddDispatcherForRootWindow( | 33 void MessagePumpOzone::AddDispatcherForRootWindow( |
34 MessagePumpDispatcher* dispatcher) { | 34 MessagePumpDispatcher* dispatcher) { |
35 // Only one root window is supported. | 35 // Only one root window is supported. |
36 DCHECK(dispatcher_.size() == 0); | 36 DCHECK(dispatcher_.size() == 0); |
37 dispatcher_.insert(dispatcher_.begin(),dispatcher); | 37 dispatcher_.insert(dispatcher_.begin(),dispatcher); |
38 } | 38 } |
39 | 39 |
40 void MessagePumpLinux::RemoveDispatcherForRootWindow( | 40 void MessagePumpOzone::RemoveDispatcherForRootWindow( |
41 MessagePumpDispatcher* dispatcher) { | 41 MessagePumpDispatcher* dispatcher) { |
42 DCHECK(dispatcher_.size() == 1); | 42 DCHECK(dispatcher_.size() == 1); |
43 dispatcher_.pop_back(); | 43 dispatcher_.pop_back(); |
44 } | 44 } |
45 | 45 |
46 bool MessagePumpLinux::Dispatch(const base::NativeEvent& dev) { | 46 bool MessagePumpOzone::Dispatch(const base::NativeEvent& dev) { |
47 if (dispatcher_.size() > 0) | 47 if (dispatcher_.size() > 0) |
48 return dispatcher_[0]->Dispatch(dev); | 48 return dispatcher_[0]->Dispatch(dev); |
49 else | 49 else |
50 return true; | 50 return true; |
51 } | 51 } |
52 | 52 |
53 // This code assumes that the caller tracks the lifetime of the |dispatcher|. | 53 // This code assumes that the caller tracks the lifetime of the |dispatcher|. |
54 void MessagePumpLinux::RunWithDispatcher( | 54 void MessagePumpOzone::RunWithDispatcher( |
55 Delegate* delegate, MessagePumpDispatcher* dispatcher) { | 55 Delegate* delegate, MessagePumpDispatcher* dispatcher) { |
56 dispatcher_.push_back(dispatcher); | 56 dispatcher_.push_back(dispatcher); |
57 Run(delegate); | 57 Run(delegate); |
58 dispatcher_.pop_back(); | 58 dispatcher_.pop_back(); |
59 } | 59 } |
60 | 60 |
61 } // namespace base | 61 } // namespace base |
OLD | NEW |