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 #ifndef CONTENT_BROWSER_WEB_CONTENTS_TOUCH_EDITABLE_IMPL_AURA_H_ | 5 #ifndef CONTENT_BROWSER_WEB_CONTENTS_TOUCH_EDITABLE_IMPL_AURA_H_ |
6 #define CONTENT_BROWSER_WEB_CONTENTS_TOUCH_EDITABLE_IMPL_AURA_H_ | 6 #define CONTENT_BROWSER_WEB_CONTENTS_TOUCH_EDITABLE_IMPL_AURA_H_ |
7 | 7 |
8 #include <deque> | 8 #include <deque> |
9 #include <map> | 9 #include <map> |
| 10 #include <queue> |
10 | 11 |
11 #include "content/browser/renderer_host/render_widget_host_view_aura.h" | 12 #include "content/browser/renderer_host/render_widget_host_view_aura.h" |
12 #include "ui/aura/window_observer.h" | 13 #include "ui/aura/window_observer.h" |
13 #include "ui/base/touch/touch_editing_controller.h" | 14 #include "ui/base/touch/touch_editing_controller.h" |
14 #include "ui/gfx/native_widget_types.h" | 15 #include "ui/gfx/native_widget_types.h" |
15 #include "ui/gfx/point.h" | 16 #include "ui/gfx/point.h" |
16 #include "ui/gfx/rect.h" | 17 #include "ui/gfx/rect.h" |
17 | 18 |
18 namespace ui { | 19 namespace ui { |
19 class Accelerator; | 20 class Accelerator; |
(...skipping 88 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
108 // this queue to keep track of the the tap count so that we can distinguish | 109 // this queue to keep track of the the tap count so that we can distinguish |
109 // between double and single tap when we get the ack. | 110 // between double and single tap when we get the ack. |
110 std::queue<int> tap_gesture_tap_count_queue_; | 111 std::queue<int> tap_gesture_tap_count_queue_; |
111 | 112 |
112 DISALLOW_COPY_AND_ASSIGN(TouchEditableImplAura); | 113 DISALLOW_COPY_AND_ASSIGN(TouchEditableImplAura); |
113 }; | 114 }; |
114 | 115 |
115 } // namespace content | 116 } // namespace content |
116 | 117 |
117 #endif // CONTENT_BROWSER_WEB_CONTENTS_TOUCH_EDITABLE_IMPL_AURA_H_ | 118 #endif // CONTENT_BROWSER_WEB_CONTENTS_TOUCH_EDITABLE_IMPL_AURA_H_ |
OLD | NEW |