OLD | NEW |
1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 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 CONTENT_BROWSER_RENDERER_HOST_INPUT_TOUCH_SELECTION_CONTROLLER_CLIENT_AU
RA_H_ | 5 #ifndef CONTENT_BROWSER_RENDERER_HOST_INPUT_TOUCH_SELECTION_CONTROLLER_CLIENT_AU
RA_H_ |
6 #define CONTENT_BROWSER_RENDERER_HOST_INPUT_TOUCH_SELECTION_CONTROLLER_CLIENT_AU
RA_H_ | 6 #define CONTENT_BROWSER_RENDERER_HOST_INPUT_TOUCH_SELECTION_CONTROLLER_CLIENT_AU
RA_H_ |
7 | 7 |
8 #include "base/macros.h" | 8 #include "base/macros.h" |
| 9 #include "base/memory/scoped_ptr.h" |
9 #include "base/timer/timer.h" | 10 #include "base/timer/timer.h" |
10 #include "content/common/content_export.h" | 11 #include "content/common/content_export.h" |
11 #include "ui/touch_selection/touch_selection_controller.h" | 12 #include "ui/touch_selection/touch_selection_controller.h" |
12 #include "ui/touch_selection/touch_selection_menu_runner.h" | 13 #include "ui/touch_selection/touch_selection_menu_runner.h" |
13 | 14 |
14 namespace content { | 15 namespace content { |
15 struct ContextMenuParams; | 16 struct ContextMenuParams; |
16 class RenderWidgetHostViewAura; | 17 class RenderWidgetHostViewAura; |
17 | 18 |
18 // An implementation of |TouchSelectionControllerClient| to be used in Aura's | 19 // An implementation of |TouchSelectionControllerClient| to be used in Aura's |
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
83 // A pre-target event handler for aura::Env which deactivates touch selection | 84 // A pre-target event handler for aura::Env which deactivates touch selection |
84 // on mouse and keyboard events. | 85 // on mouse and keyboard events. |
85 std::unique_ptr<EnvPreTargetHandler> env_pre_target_handler_; | 86 std::unique_ptr<EnvPreTargetHandler> env_pre_target_handler_; |
86 | 87 |
87 DISALLOW_COPY_AND_ASSIGN(TouchSelectionControllerClientAura); | 88 DISALLOW_COPY_AND_ASSIGN(TouchSelectionControllerClientAura); |
88 }; | 89 }; |
89 | 90 |
90 } // namespace content | 91 } // namespace content |
91 | 92 |
92 #endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_TOUCH_SELECTION_CONTROLLER_CLIENT
_AURA_H_ | 93 #endif // CONTENT_BROWSER_RENDERER_HOST_INPUT_TOUCH_SELECTION_CONTROLLER_CLIENT
_AURA_H_ |
OLD | NEW |