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 "content/browser/web_contents/touch_editable_impl_aura.h" | 5 #include "content/browser/web_contents/touch_editable_impl_aura.h" |
6 | 6 |
7 #include "content/browser/renderer_host/render_widget_host_impl.h" | 7 #include "content/browser/renderer_host/render_widget_host_impl.h" |
8 #include "content/browser/renderer_host/render_widget_host_view_aura.h" | 8 #include "content/browser/renderer_host/render_widget_host_view_aura.h" |
9 #include "content/browser/web_contents/web_contents_impl.h" | 9 #include "content/browser/web_contents/web_contents_impl.h" |
10 #include "content/common/view_messages.h" | 10 #include "content/common/view_messages.h" |
11 #include "content/public/browser/render_view_host.h" | 11 #include "content/public/browser/render_view_host.h" |
12 #include "content/public/browser/render_widget_host.h" | 12 #include "content/public/browser/render_widget_host.h" |
13 #include "ui/aura/client/screen_position_client.h" | 13 #include "ui/aura/client/screen_position_client.h" |
14 #include "ui/aura/window.h" | 14 #include "ui/aura/window.h" |
15 #include "ui/aura/window_tree_host.h" | 15 #include "ui/aura/window_tree_host.h" |
16 #include "ui/base/clipboard/clipboard.h" | 16 #include "ui/base/clipboard/clipboard.h" |
| 17 #include "ui/base/touch/selection_bound.h" |
17 #include "ui/base/ui_base_switches_util.h" | 18 #include "ui/base/ui_base_switches_util.h" |
18 #include "ui/gfx/range/range.h" | 19 #include "ui/gfx/range/range.h" |
19 #include "ui/strings/grit/ui_strings.h" | 20 #include "ui/strings/grit/ui_strings.h" |
20 #include "ui/wm/public/activation_client.h" | 21 #include "ui/wm/public/activation_client.h" |
21 | 22 |
22 namespace content { | 23 namespace content { |
23 | 24 |
24 //////////////////////////////////////////////////////////////////////////////// | 25 //////////////////////////////////////////////////////////////////////////////// |
25 // TouchEditableImplAura, public: | 26 // TouchEditableImplAura, public: |
26 | 27 |
(...skipping 337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
364 rwhva_ = NULL; | 365 rwhva_ = NULL; |
365 } | 366 } |
366 text_input_type_ = ui::TEXT_INPUT_TYPE_NONE; | 367 text_input_type_ = ui::TEXT_INPUT_TYPE_NONE; |
367 EndTouchEditing(true); | 368 EndTouchEditing(true); |
368 selection_gesture_in_process_ = false; | 369 selection_gesture_in_process_ = false; |
369 handles_hidden_due_to_scroll_ = false; | 370 handles_hidden_due_to_scroll_ = false; |
370 scrolls_in_progress_ = 0; | 371 scrolls_in_progress_ = 0; |
371 } | 372 } |
372 | 373 |
373 } // namespace content | 374 } // namespace content |
OLD | NEW |