OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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 #ifndef ASH_WM_STICKY_KEYS_CONTROLLER_H_ | 5 #ifndef ASH_STICKY_KEYS_STICKY_KEYS_CONTROLLER_H_ |
6 #define ASH_WM_STICKY_KEYS_CONTROLLER_H_ | 6 #define ASH_STICKY_KEYS_STICKY_KEYS_CONTROLLER_H_ |
7 | 7 |
8 #include "ash/ash_export.h" | 8 #include "ash/ash_export.h" |
9 #include "base/memory/scoped_ptr.h" | 9 #include "base/memory/scoped_ptr.h" |
10 #include "ui/events/event_constants.h" | 10 #include "ui/events/event_constants.h" |
11 #include "ui/events/event_handler.h" | 11 #include "ui/events/event_handler.h" |
12 | 12 |
13 namespace ui { | 13 namespace ui { |
14 class Event; | 14 class Event; |
15 class KeyEvent; | 15 class KeyEvent; |
16 class MouseEvent; | 16 class MouseEvent; |
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 // The modifier up key event to be sent on non modifier key on ENABLED state. | 230 // The modifier up key event to be sent on non modifier key on ENABLED state. |
231 scoped_ptr<ui::KeyEvent> modifier_up_event_; | 231 scoped_ptr<ui::KeyEvent> modifier_up_event_; |
232 | 232 |
233 scoped_ptr<StickyKeysHandlerDelegate> delegate_; | 233 scoped_ptr<StickyKeysHandlerDelegate> delegate_; |
234 | 234 |
235 DISALLOW_COPY_AND_ASSIGN(StickyKeysHandler); | 235 DISALLOW_COPY_AND_ASSIGN(StickyKeysHandler); |
236 }; | 236 }; |
237 | 237 |
238 } // namespace ash | 238 } // namespace ash |
239 | 239 |
240 #endif // ASH_WM_STICKY_KEYS_CONTROLLER_H_ | 240 #endif // ASH_STICKY_KEYS_STICKY_KEYS_CONTROLLER_H_ |
OLD | NEW |