| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 #ifndef UI_VIEWS_CONTROLS_MENU_MENU_MESSAGE_PUMP_DISPATCHER_WIN_H_ | 5 #ifndef UI_VIEWS_CONTROLS_MENU_MENU_MESSAGE_PUMP_DISPATCHER_WIN_H_ |
| 6 #define UI_VIEWS_CONTROLS_MENU_MENU_MESSAGE_PUMP_DISPATCHER_WIN_H_ | 6 #define UI_VIEWS_CONTROLS_MENU_MENU_MESSAGE_PUMP_DISPATCHER_WIN_H_ |
| 7 | 7 |
| 8 #include <stdint.h> |
| 9 |
| 8 #include "base/macros.h" | 10 #include "base/macros.h" |
| 9 #include "base/message_loop/message_pump_dispatcher.h" | 11 #include "base/message_loop/message_pump_dispatcher.h" |
| 10 | 12 |
| 11 namespace views { | 13 namespace views { |
| 12 | 14 |
| 13 class MenuController; | 15 class MenuController; |
| 14 | 16 |
| 15 namespace internal { | 17 namespace internal { |
| 16 | 18 |
| 17 // A message-pump dispatcher object used to dispatch events from the nested | 19 // A message-pump dispatcher object used to dispatch events from the nested |
| 18 // message-loop initiated by the MenuController. | 20 // message-loop initiated by the MenuController. |
| 19 class MenuMessagePumpDispatcher : public base::MessagePumpDispatcher { | 21 class MenuMessagePumpDispatcher : public base::MessagePumpDispatcher { |
| 20 public: | 22 public: |
| 21 explicit MenuMessagePumpDispatcher(MenuController* menu_controller); | 23 explicit MenuMessagePumpDispatcher(MenuController* menu_controller); |
| 22 ~MenuMessagePumpDispatcher() override; | 24 ~MenuMessagePumpDispatcher() override; |
| 23 | 25 |
| 24 private: | 26 private: |
| 25 // base::MessagePumpDispatcher: | 27 // base::MessagePumpDispatcher: |
| 26 uint32_t Dispatch(const base::NativeEvent& event) override; | 28 uint32_t Dispatch(const base::NativeEvent& event) override; |
| 27 | 29 |
| 28 MenuController* menu_controller_; | 30 MenuController* menu_controller_; |
| 29 | 31 |
| 30 DISALLOW_COPY_AND_ASSIGN(MenuMessagePumpDispatcher); | 32 DISALLOW_COPY_AND_ASSIGN(MenuMessagePumpDispatcher); |
| 31 }; | 33 }; |
| 32 | 34 |
| 33 } // namespace internal | 35 } // namespace internal |
| 34 } // namespace views | 36 } // namespace views |
| 35 | 37 |
| 36 #endif // UI_VIEWS_CONTROLS_MENU_MENU_MESSAGE_PUMP_DISPATCHER_WIN_H_ | 38 #endif // UI_VIEWS_CONTROLS_MENU_MENU_MESSAGE_PUMP_DISPATCHER_WIN_H_ |
| OLD | NEW |