Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(133)

Side by Side Diff: content/common/frame_messages.h

Issue 1974613002: Remove code that was only used by navigator.connect. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix comment Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « content/child/webmessageportchannel_impl.cc ('k') | content/common/message_port_messages.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
(...skipping 12 matching lines...) Expand all
23 #include "content/common/navigation_gesture.h" 23 #include "content/common/navigation_gesture.h"
24 #include "content/common/navigation_params.h" 24 #include "content/common/navigation_params.h"
25 #include "content/common/resource_request_body.h" 25 #include "content/common/resource_request_body.h"
26 #include "content/common/savable_subframe.h" 26 #include "content/common/savable_subframe.h"
27 #include "content/public/common/color_suggestion.h" 27 #include "content/public/common/color_suggestion.h"
28 #include "content/public/common/common_param_traits.h" 28 #include "content/public/common/common_param_traits.h"
29 #include "content/public/common/console_message_level.h" 29 #include "content/public/common/console_message_level.h"
30 #include "content/public/common/context_menu_params.h" 30 #include "content/public/common/context_menu_params.h"
31 #include "content/public/common/frame_navigate_params.h" 31 #include "content/public/common/frame_navigate_params.h"
32 #include "content/public/common/javascript_message_type.h" 32 #include "content/public/common/javascript_message_type.h"
33 #include "content/public/common/message_port_types.h"
34 #include "content/public/common/page_importance_signals.h" 33 #include "content/public/common/page_importance_signals.h"
35 #include "content/public/common/page_state.h" 34 #include "content/public/common/page_state.h"
36 #include "content/public/common/resource_response.h" 35 #include "content/public/common/resource_response.h"
37 #include "content/public/common/stop_find_action.h" 36 #include "content/public/common/stop_find_action.h"
38 #include "content/public/common/three_d_api_types.h" 37 #include "content/public/common/three_d_api_types.h"
39 #include "content/public/common/transition_element.h" 38 #include "content/public/common/transition_element.h"
40 #include "ipc/ipc_message_macros.h" 39 #include "ipc/ipc_message_macros.h"
41 #include "ipc/ipc_platform_file.h" 40 #include "ipc/ipc_platform_file.h"
42 #include "third_party/WebKit/public/platform/WebFocusType.h" 41 #include "third_party/WebKit/public/platform/WebFocusType.h"
43 #include "third_party/WebKit/public/web/WebFindOptions.h" 42 #include "third_party/WebKit/public/web/WebFindOptions.h"
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 // equivalent frame proxy in the destination process. 313 // equivalent frame proxy in the destination process.
315 IPC_STRUCT_MEMBER(int, source_routing_id) 314 IPC_STRUCT_MEMBER(int, source_routing_id)
316 315
317 // The origin of the source frame. 316 // The origin of the source frame.
318 IPC_STRUCT_MEMBER(base::string16, source_origin) 317 IPC_STRUCT_MEMBER(base::string16, source_origin)
319 318
320 // The origin for the message's target. 319 // The origin for the message's target.
321 IPC_STRUCT_MEMBER(base::string16, target_origin) 320 IPC_STRUCT_MEMBER(base::string16, target_origin)
322 321
323 // Information about the MessagePorts this message contains. 322 // Information about the MessagePorts this message contains.
324 IPC_STRUCT_MEMBER(std::vector<content::TransferredMessagePort>, message_ports) 323 IPC_STRUCT_MEMBER(std::vector<int>, message_ports)
325 IPC_STRUCT_MEMBER(std::vector<int>, new_routing_ids) 324 IPC_STRUCT_MEMBER(std::vector<int>, new_routing_ids)
326 IPC_STRUCT_END() 325 IPC_STRUCT_END()
327 326
328 IPC_STRUCT_TRAITS_BEGIN(content::CommonNavigationParams) 327 IPC_STRUCT_TRAITS_BEGIN(content::CommonNavigationParams)
329 IPC_STRUCT_TRAITS_MEMBER(url) 328 IPC_STRUCT_TRAITS_MEMBER(url)
330 IPC_STRUCT_TRAITS_MEMBER(referrer) 329 IPC_STRUCT_TRAITS_MEMBER(referrer)
331 IPC_STRUCT_TRAITS_MEMBER(transition) 330 IPC_STRUCT_TRAITS_MEMBER(transition)
332 IPC_STRUCT_TRAITS_MEMBER(navigation_type) 331 IPC_STRUCT_TRAITS_MEMBER(navigation_type)
333 IPC_STRUCT_TRAITS_MEMBER(allow_download) 332 IPC_STRUCT_TRAITS_MEMBER(allow_download)
334 IPC_STRUCT_TRAITS_MEMBER(should_replace_current_entry) 333 IPC_STRUCT_TRAITS_MEMBER(should_replace_current_entry)
(...skipping 1110 matching lines...) Expand 10 before | Expand all | Expand 10 after
1445 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply, 1444 IPC_MESSAGE_ROUTED3(FrameHostMsg_FindMatchRects_Reply,
1446 int /* version */, 1445 int /* version */,
1447 std::vector<gfx::RectF> /* rects */, 1446 std::vector<gfx::RectF> /* rects */,
1448 gfx::RectF /* active_rect */) 1447 gfx::RectF /* active_rect */)
1449 #endif 1448 #endif
1450 1449
1451 // Adding a new message? Stick to the sort order above: first platform 1450 // Adding a new message? Stick to the sort order above: first platform
1452 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then 1451 // independent FrameMsg, then ifdefs for platform specific FrameMsg, then
1453 // platform independent FrameHostMsg, then ifdefs for platform specific 1452 // platform independent FrameHostMsg, then ifdefs for platform specific
1454 // FrameHostMsg. 1453 // FrameHostMsg.
OLDNEW
« no previous file with comments | « content/child/webmessageportchannel_impl.cc ('k') | content/common/message_port_messages.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698