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/common/view_messages.h" | 9 #include "content/common/view_messages.h" |
10 #include "content/public/browser/render_widget_host.h" | 10 #include "content/public/browser/render_widget_host.h" |
11 #include "grit/ui_strings.h" | 11 #include "grit/ui_strings.h" |
12 #include "ui/aura/client/activation_client.h" | 12 #include "ui/aura/client/activation_client.h" |
13 #include "ui/aura/client/screen_position_client.h" | 13 #include "ui/aura/client/screen_position_client.h" |
14 #include "ui/aura/root_window.h" | |
15 #include "ui/aura/window.h" | 14 #include "ui/aura/window.h" |
| 15 #include "ui/aura/window_event_dispatcher.h" |
16 #include "ui/base/clipboard/clipboard.h" | 16 #include "ui/base/clipboard/clipboard.h" |
17 #include "ui/base/ui_base_switches_util.h" | 17 #include "ui/base/ui_base_switches_util.h" |
18 #include "ui/gfx/range/range.h" | 18 #include "ui/gfx/range/range.h" |
19 | 19 |
20 namespace content { | 20 namespace content { |
21 | 21 |
22 //////////////////////////////////////////////////////////////////////////////// | 22 //////////////////////////////////////////////////////////////////////////////// |
23 // TouchEditableImplAura, public: | 23 // TouchEditableImplAura, public: |
24 | 24 |
25 TouchEditableImplAura::~TouchEditableImplAura() { | 25 TouchEditableImplAura::~TouchEditableImplAura() { |
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
376 rwhva_ = NULL; | 376 rwhva_ = NULL; |
377 } | 377 } |
378 text_input_type_ = ui::TEXT_INPUT_TYPE_NONE; | 378 text_input_type_ = ui::TEXT_INPUT_TYPE_NONE; |
379 EndTouchEditing(true); | 379 EndTouchEditing(true); |
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 |