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

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

Issue 1142923002: Add a "Save password" item to the context menu. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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
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 "content/common/content_export.h" 8 #include "content/common/content_export.h"
9 #include "content/common/content_param_traits.h" 9 #include "content/common/content_param_traits.h"
10 #include "content/common/frame_message_enums.h" 10 #include "content/common/frame_message_enums.h"
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
82 IPC_STRUCT_TRAITS_MEMBER(security_info) 82 IPC_STRUCT_TRAITS_MEMBER(security_info)
83 IPC_STRUCT_TRAITS_MEMBER(frame_charset) 83 IPC_STRUCT_TRAITS_MEMBER(frame_charset)
84 IPC_STRUCT_TRAITS_MEMBER(referrer_policy) 84 IPC_STRUCT_TRAITS_MEMBER(referrer_policy)
85 IPC_STRUCT_TRAITS_MEMBER(custom_context) 85 IPC_STRUCT_TRAITS_MEMBER(custom_context)
86 IPC_STRUCT_TRAITS_MEMBER(custom_items) 86 IPC_STRUCT_TRAITS_MEMBER(custom_items)
87 IPC_STRUCT_TRAITS_MEMBER(source_type) 87 IPC_STRUCT_TRAITS_MEMBER(source_type)
88 #if defined(OS_ANDROID) 88 #if defined(OS_ANDROID)
89 IPC_STRUCT_TRAITS_MEMBER(selection_start) 89 IPC_STRUCT_TRAITS_MEMBER(selection_start)
90 IPC_STRUCT_TRAITS_MEMBER(selection_end) 90 IPC_STRUCT_TRAITS_MEMBER(selection_end)
91 #endif 91 #endif
92 IPC_STRUCT_TRAITS_MEMBER(is_password_field)
92 IPC_STRUCT_TRAITS_END() 93 IPC_STRUCT_TRAITS_END()
93 94
94 IPC_STRUCT_TRAITS_BEGIN(content::CustomContextMenuContext) 95 IPC_STRUCT_TRAITS_BEGIN(content::CustomContextMenuContext)
95 IPC_STRUCT_TRAITS_MEMBER(is_pepper_menu) 96 IPC_STRUCT_TRAITS_MEMBER(is_pepper_menu)
96 IPC_STRUCT_TRAITS_MEMBER(request_id) 97 IPC_STRUCT_TRAITS_MEMBER(request_id)
97 IPC_STRUCT_TRAITS_MEMBER(render_widget_id) 98 IPC_STRUCT_TRAITS_MEMBER(render_widget_id)
98 IPC_STRUCT_TRAITS_MEMBER(link_followed) 99 IPC_STRUCT_TRAITS_MEMBER(link_followed)
99 IPC_STRUCT_TRAITS_END() 100 IPC_STRUCT_TRAITS_END()
100 101
101 IPC_STRUCT_TRAITS_BEGIN(content::TransitionElement) 102 IPC_STRUCT_TRAITS_BEGIN(content::TransitionElement)
(...skipping 853 matching lines...) Expand 10 before | Expand all | Expand 10 after
955 FrameMsg_PostMessage_Params) 956 FrameMsg_PostMessage_Params)
956 957
957 #if defined(OS_MACOSX) || defined(OS_ANDROID) 958 #if defined(OS_MACOSX) || defined(OS_ANDROID)
958 959
959 // Message to show/hide a popup menu using native controls. 960 // Message to show/hide a popup menu using native controls.
960 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, 961 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup,
961 FrameHostMsg_ShowPopup_Params) 962 FrameHostMsg_ShowPopup_Params)
962 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) 963 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup)
963 964
964 #endif 965 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698