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 "grit/ui_strings.h" | |
14 #include "ui/aura/client/screen_position_client.h" | 13 #include "ui/aura/client/screen_position_client.h" |
15 #include "ui/aura/window.h" | 14 #include "ui/aura/window.h" |
16 #include "ui/aura/window_tree_host.h" | 15 #include "ui/aura/window_tree_host.h" |
17 #include "ui/base/clipboard/clipboard.h" | 16 #include "ui/base/clipboard/clipboard.h" |
18 #include "ui/base/ui_base_switches_util.h" | 17 #include "ui/base/ui_base_switches_util.h" |
19 #include "ui/gfx/range/range.h" | 18 #include "ui/gfx/range/range.h" |
| 19 #include "ui/strings/grit/ui_strings.h" |
20 #include "ui/wm/public/activation_client.h" | 20 #include "ui/wm/public/activation_client.h" |
21 | 21 |
22 namespace content { | 22 namespace content { |
23 | 23 |
24 //////////////////////////////////////////////////////////////////////////////// | 24 //////////////////////////////////////////////////////////////////////////////// |
25 // TouchEditableImplAura, public: | 25 // TouchEditableImplAura, public: |
26 | 26 |
27 TouchEditableImplAura::~TouchEditableImplAura() { | 27 TouchEditableImplAura::~TouchEditableImplAura() { |
28 Cleanup(); | 28 Cleanup(); |
29 } | 29 } |
(...skipping 346 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
376 } | 376 } |
377 text_input_type_ = ui::TEXT_INPUT_TYPE_NONE; | 377 text_input_type_ = ui::TEXT_INPUT_TYPE_NONE; |
378 EndTouchEditing(true); | 378 EndTouchEditing(true); |
379 selection_gesture_in_process_ = false; | 379 selection_gesture_in_process_ = false; |
380 handles_hidden_due_to_scroll_ = false; | 380 handles_hidden_due_to_scroll_ = false; |
381 scroll_in_progress_ = false; | 381 scroll_in_progress_ = false; |
382 overscroll_in_progress_ = false; | 382 overscroll_in_progress_ = false; |
383 } | 383 } |
384 | 384 |
385 } // namespace content | 385 } // namespace content |
OLD | NEW |