OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 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/renderer/render_frame_impl.h" | 5 #include "content/renderer/render_frame_impl.h" |
6 | 6 |
7 #include <map> | 7 #include <map> |
8 #include <string> | 8 #include <string> |
9 #include <utility> | 9 #include <utility> |
10 #include <vector> | 10 #include <vector> |
(...skipping 17 matching lines...) Expand all Loading... |
28 #include "base/strings/string16.h" | 28 #include "base/strings/string16.h" |
29 #include "base/strings/utf_string_conversions.h" | 29 #include "base/strings/utf_string_conversions.h" |
30 #include "base/thread_task_runner_handle.h" | 30 #include "base/thread_task_runner_handle.h" |
31 #include "base/time/time.h" | 31 #include "base/time/time.h" |
32 #include "base/trace_event/trace_event_argument.h" | 32 #include "base/trace_event/trace_event_argument.h" |
33 #include "build/build_config.h" | 33 #include "build/build_config.h" |
34 #include "cc/base/switches.h" | 34 #include "cc/base/switches.h" |
35 #include "components/scheduler/renderer/renderer_scheduler.h" | 35 #include "components/scheduler/renderer/renderer_scheduler.h" |
36 #include "content/child/appcache/appcache_dispatcher.h" | 36 #include "content/child/appcache/appcache_dispatcher.h" |
37 #include "content/child/permissions/permission_dispatcher.h" | 37 #include "content/child/permissions/permission_dispatcher.h" |
38 #include "content/child/plugin_messages.h" | |
39 #include "content/child/quota_dispatcher.h" | 38 #include "content/child/quota_dispatcher.h" |
40 #include "content/child/request_extra_data.h" | 39 #include "content/child/request_extra_data.h" |
41 #include "content/child/service_worker/service_worker_handle_reference.h" | 40 #include "content/child/service_worker/service_worker_handle_reference.h" |
42 #include "content/child/service_worker/service_worker_network_provider.h" | 41 #include "content/child/service_worker/service_worker_network_provider.h" |
43 #include "content/child/service_worker/service_worker_provider_context.h" | 42 #include "content/child/service_worker/service_worker_provider_context.h" |
44 #include "content/child/service_worker/web_service_worker_provider_impl.h" | 43 #include "content/child/service_worker/web_service_worker_provider_impl.h" |
45 #include "content/child/v8_value_converter_impl.h" | 44 #include "content/child/v8_value_converter_impl.h" |
46 #include "content/child/web_url_loader_impl.h" | 45 #include "content/child/web_url_loader_impl.h" |
47 #include "content/child/web_url_request_util.h" | 46 #include "content/child/web_url_request_util.h" |
48 #include "content/child/webmessageportchannel_impl.h" | 47 #include "content/child/webmessageportchannel_impl.h" |
(...skipping 5981 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6030 int match_count, | 6029 int match_count, |
6031 int ordinal, | 6030 int ordinal, |
6032 const WebRect& selection_rect, | 6031 const WebRect& selection_rect, |
6033 bool final_status_update) { | 6032 bool final_status_update) { |
6034 Send(new FrameHostMsg_Find_Reply(routing_id_, request_id, match_count, | 6033 Send(new FrameHostMsg_Find_Reply(routing_id_, request_id, match_count, |
6035 selection_rect, ordinal, | 6034 selection_rect, ordinal, |
6036 final_status_update)); | 6035 final_status_update)); |
6037 } | 6036 } |
6038 | 6037 |
6039 } // namespace content | 6038 } // namespace content |
OLD | NEW |