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 // IPC messages for interacting with frames. | 5 // IPC messages for interacting with frames. |
6 // Multiply-included message file, hence no include guard. | 6 // Multiply-included message file, hence no include guard. |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
11 #include <map> | 11 #include <map> |
12 #include <set> | 12 #include <set> |
13 #include <string> | 13 #include <string> |
14 #include <vector> | 14 #include <vector> |
15 | 15 |
16 #include "build/build_config.h" | 16 #include "build/build_config.h" |
17 #include "cc/surfaces/surface_id.h" | 17 #include "cc/surfaces/surface_id.h" |
18 #include "cc/surfaces/surface_sequence.h" | 18 #include "cc/surfaces/surface_sequence.h" |
19 #include "content/common/content_export.h" | 19 #include "content/common/content_export.h" |
20 #include "content/common/content_param_traits.h" | 20 #include "content/common/content_param_traits.h" |
21 #include "content/common/content_security_policy_header.h" | 21 #include "content/common/content_security_policy_header.h" |
22 #include "content/common/frame_message_enums.h" | 22 #include "content/common/frame_message_enums.h" |
23 #include "content/common/frame_replication_state.h" | 23 #include "content/common/frame_replication_state.h" |
24 #include "content/common/navigation_gesture.h" | 24 #include "content/common/navigation_gesture.h" |
25 #include "content/common/navigation_params.h" | 25 #include "content/common/navigation_params.h" |
26 #include "content/common/resource_request_body.h" | 26 #include "content/common/resource_request_body_impl.h" |
Charlie Reis
2016/06/07 22:21:01
Is this stale?
Łukasz Anforowicz
2016/06/08 16:51:56
Indeed. I should have removed that in my recent C
| |
27 #include "content/common/savable_subframe.h" | 27 #include "content/common/savable_subframe.h" |
28 #include "content/public/common/color_suggestion.h" | 28 #include "content/public/common/color_suggestion.h" |
29 #include "content/public/common/common_param_traits.h" | 29 #include "content/public/common/common_param_traits.h" |
30 #include "content/public/common/console_message_level.h" | 30 #include "content/public/common/console_message_level.h" |
31 #include "content/public/common/context_menu_params.h" | 31 #include "content/public/common/context_menu_params.h" |
32 #include "content/public/common/frame_navigate_params.h" | 32 #include "content/public/common/frame_navigate_params.h" |
33 #include "content/public/common/javascript_message_type.h" | 33 #include "content/public/common/javascript_message_type.h" |
34 #include "content/public/common/page_importance_signals.h" | 34 #include "content/public/common/page_importance_signals.h" |
35 #include "content/public/common/page_state.h" | 35 #include "content/public/common/page_state.h" |
36 #include "content/public/common/resource_response.h" | 36 #include "content/public/common/resource_response.h" |
(...skipping 1440 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1477 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, | 1477 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, |
1478 int /* version */, | 1478 int /* version */, |
1479 std::vector<gfx::RectF> /* rects */, | 1479 std::vector<gfx::RectF> /* rects */, |
1480 gfx::RectF /* active_rect */) | 1480 gfx::RectF /* active_rect */) |
1481 #endif | 1481 #endif |
1482 | 1482 |
1483 // Adding a new message? Stick to the sort order above: first platform | 1483 // Adding a new message? Stick to the sort order above: first platform |
1484 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then | 1484 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then |
1485 // platform independent FrameHostMsg, then ifdefs for platform specific | 1485 // platform independent FrameHostMsg, then ifdefs for platform specific |
1486 // FrameHostMsg. | 1486 // FrameHostMsg. |
OLD | NEW |