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 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
57 #include "content/common/page_messages.h" | 57 #include "content/common/page_messages.h" |
58 #include "content/common/savable_subframe.h" | 58 #include "content/common/savable_subframe.h" |
59 #include "content/common/service_worker/service_worker_types.h" | 59 #include "content/common/service_worker/service_worker_types.h" |
60 #include "content/common/site_isolation_policy.h" | 60 #include "content/common/site_isolation_policy.h" |
61 #include "content/common/ssl_status_serialization.h" | 61 #include "content/common/ssl_status_serialization.h" |
62 #include "content/common/swapped_out_messages.h" | 62 #include "content/common/swapped_out_messages.h" |
63 #include "content/common/view_messages.h" | 63 #include "content/common/view_messages.h" |
64 #include "content/public/common/bindings_policy.h" | 64 #include "content/public/common/bindings_policy.h" |
65 #include "content/public/common/browser_side_navigation_policy.h" | 65 #include "content/public/common/browser_side_navigation_policy.h" |
66 #include "content/public/common/content_constants.h" | 66 #include "content/public/common/content_constants.h" |
67 #include "content/public/common/content_features.h" | |
jochen (gone - plz use gerrit)
2016/05/02 17:09:46
Unrelated?
scheib
2016/05/02 19:38:43
Done.
| |
68 #include "content/public/common/content_switches.h" | 67 #include "content/public/common/content_switches.h" |
69 #include "content/public/common/context_menu_params.h" | 68 #include "content/public/common/context_menu_params.h" |
70 #include "content/public/common/isolated_world_ids.h" | 69 #include "content/public/common/isolated_world_ids.h" |
71 #include "content/public/common/page_state.h" | 70 #include "content/public/common/page_state.h" |
72 #include "content/public/common/resource_response.h" | 71 #include "content/public/common/resource_response.h" |
73 #include "content/public/common/url_constants.h" | 72 #include "content/public/common/url_constants.h" |
74 #include "content/public/common/url_utils.h" | 73 #include "content/public/common/url_utils.h" |
75 #include "content/public/renderer/browser_plugin_delegate.h" | 74 #include "content/public/renderer/browser_plugin_delegate.h" |
76 #include "content/public/renderer/content_renderer_client.h" | 75 #include "content/public/renderer/content_renderer_client.h" |
77 #include "content/public/renderer/context_menu_client.h" | 76 #include "content/public/renderer/context_menu_client.h" |
(...skipping 5960 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
6038 int match_count, | 6037 int match_count, |
6039 int ordinal, | 6038 int ordinal, |
6040 const WebRect& selection_rect, | 6039 const WebRect& selection_rect, |
6041 bool final_status_update) { | 6040 bool final_status_update) { |
6042 Send(new FrameHostMsg_Find_Reply(routing_id_, request_id, match_count, | 6041 Send(new FrameHostMsg_Find_Reply(routing_id_, request_id, match_count, |
6043 selection_rect, ordinal, | 6042 selection_rect, ordinal, |
6044 final_status_update)); | 6043 final_status_update)); |
6045 } | 6044 } |
6046 | 6045 |
6047 } // namespace content | 6046 } // namespace content |
OLD | NEW |