| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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/renderer/render_view_impl.h" | 5 #include "content/renderer/render_view_impl.h" |
| 6 | 6 |
| 7 #include <algorithm> | 7 #include <algorithm> |
| 8 #include <cmath> | 8 #include <cmath> |
| 9 #include <memory> | 9 #include <memory> |
| 10 | 10 |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 #include "base/strings/sys_string_conversions.h" | 33 #include "base/strings/sys_string_conversions.h" |
| 34 #include "base/strings/utf_string_conversions.h" | 34 #include "base/strings/utf_string_conversions.h" |
| 35 #include "base/sys_info.h" | 35 #include "base/sys_info.h" |
| 36 #include "base/threading/thread_task_runner_handle.h" | 36 #include "base/threading/thread_task_runner_handle.h" |
| 37 #include "base/time/time.h" | 37 #include "base/time/time.h" |
| 38 #include "base/trace_event/trace_event.h" | 38 #include "base/trace_event/trace_event.h" |
| 39 #include "build/build_config.h" | 39 #include "build/build_config.h" |
| 40 #include "cc/base/switches.h" | 40 #include "cc/base/switches.h" |
| 41 #include "content/child/appcache/appcache_dispatcher.h" | 41 #include "content/child/appcache/appcache_dispatcher.h" |
| 42 #include "content/child/appcache/web_application_cache_host_impl.h" | 42 #include "content/child/appcache/web_application_cache_host_impl.h" |
| 43 #include "content/child/child_shared_bitmap_manager.h" | |
| 44 #include "content/child/request_extra_data.h" | 43 #include "content/child/request_extra_data.h" |
| 45 #include "content/child/v8_value_converter_impl.h" | 44 #include "content/child/v8_value_converter_impl.h" |
| 46 #include "content/child/webmessageportchannel_impl.h" | 45 #include "content/child/webmessageportchannel_impl.h" |
| 47 #include "content/common/content_constants_internal.h" | 46 #include "content/common/content_constants_internal.h" |
| 48 #include "content/common/content_switches_internal.h" | 47 #include "content/common/content_switches_internal.h" |
| 49 #include "content/common/dom_storage/dom_storage_types.h" | 48 #include "content/common/dom_storage/dom_storage_types.h" |
| 50 #include "content/common/drag_messages.h" | 49 #include "content/common/drag_messages.h" |
| 51 #include "content/common/frame_messages.h" | 50 #include "content/common/frame_messages.h" |
| 52 #include "content/common/frame_replication_state.h" | 51 #include "content/common/frame_replication_state.h" |
| 53 #include "content/common/input_messages.h" | 52 #include "content/common/input_messages.h" |
| (...skipping 2666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2720 INPUT_EVENT_ACK_STATE_NOT_CONSUMED); | 2719 INPUT_EVENT_ACK_STATE_NOT_CONSUMED); |
| 2721 } | 2720 } |
| 2722 | 2721 |
| 2723 std::unique_ptr<InputEventAck> ack( | 2722 std::unique_ptr<InputEventAck> ack( |
| 2724 new InputEventAck(InputEventAckSource::MAIN_THREAD, input_event->type(), | 2723 new InputEventAck(InputEventAckSource::MAIN_THREAD, input_event->type(), |
| 2725 INPUT_EVENT_ACK_STATE_NOT_CONSUMED)); | 2724 INPUT_EVENT_ACK_STATE_NOT_CONSUMED)); |
| 2726 OnInputEventAck(std::move(ack)); | 2725 OnInputEventAck(std::move(ack)); |
| 2727 } | 2726 } |
| 2728 | 2727 |
| 2729 } // namespace content | 2728 } // namespace content |
| OLD | NEW |