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

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

Issue 1105263004: "Load image" context menu item to reload a LoFi image. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: try again 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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 54
55 IPC_STRUCT_TRAITS_BEGIN(content::ContextMenuParams) 55 IPC_STRUCT_TRAITS_BEGIN(content::ContextMenuParams)
56 IPC_STRUCT_TRAITS_MEMBER(media_type) 56 IPC_STRUCT_TRAITS_MEMBER(media_type)
57 IPC_STRUCT_TRAITS_MEMBER(x) 57 IPC_STRUCT_TRAITS_MEMBER(x)
58 IPC_STRUCT_TRAITS_MEMBER(y) 58 IPC_STRUCT_TRAITS_MEMBER(y)
59 IPC_STRUCT_TRAITS_MEMBER(link_url) 59 IPC_STRUCT_TRAITS_MEMBER(link_url)
60 IPC_STRUCT_TRAITS_MEMBER(link_text) 60 IPC_STRUCT_TRAITS_MEMBER(link_text)
61 IPC_STRUCT_TRAITS_MEMBER(unfiltered_link_url) 61 IPC_STRUCT_TRAITS_MEMBER(unfiltered_link_url)
62 IPC_STRUCT_TRAITS_MEMBER(src_url) 62 IPC_STRUCT_TRAITS_MEMBER(src_url)
63 IPC_STRUCT_TRAITS_MEMBER(has_image_contents) 63 IPC_STRUCT_TRAITS_MEMBER(has_image_contents)
64 IPC_STRUCT_TRAITS_MEMBER(properties)
64 IPC_STRUCT_TRAITS_MEMBER(page_url) 65 IPC_STRUCT_TRAITS_MEMBER(page_url)
65 IPC_STRUCT_TRAITS_MEMBER(keyword_url) 66 IPC_STRUCT_TRAITS_MEMBER(keyword_url)
66 IPC_STRUCT_TRAITS_MEMBER(frame_url) 67 IPC_STRUCT_TRAITS_MEMBER(frame_url)
67 IPC_STRUCT_TRAITS_MEMBER(frame_page_state) 68 IPC_STRUCT_TRAITS_MEMBER(frame_page_state)
68 IPC_STRUCT_TRAITS_MEMBER(media_flags) 69 IPC_STRUCT_TRAITS_MEMBER(media_flags)
69 IPC_STRUCT_TRAITS_MEMBER(selection_text) 70 IPC_STRUCT_TRAITS_MEMBER(selection_text)
70 IPC_STRUCT_TRAITS_MEMBER(suggested_filename) 71 IPC_STRUCT_TRAITS_MEMBER(suggested_filename)
71 IPC_STRUCT_TRAITS_MEMBER(misspelled_word) 72 IPC_STRUCT_TRAITS_MEMBER(misspelled_word)
72 IPC_STRUCT_TRAITS_MEMBER(misspelling_hash) 73 IPC_STRUCT_TRAITS_MEMBER(misspelling_hash)
73 IPC_STRUCT_TRAITS_MEMBER(dictionary_suggestions) 74 IPC_STRUCT_TRAITS_MEMBER(dictionary_suggestions)
(...skipping 895 matching lines...) Expand 10 before | Expand all | Expand 10 after
969 FrameMsg_PostMessage_Params) 970 FrameMsg_PostMessage_Params)
970 971
971 #if defined(OS_MACOSX) || defined(OS_ANDROID) 972 #if defined(OS_MACOSX) || defined(OS_ANDROID)
972 973
973 // Message to show/hide a popup menu using native controls. 974 // Message to show/hide a popup menu using native controls.
974 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup, 975 IPC_MESSAGE_ROUTED1(FrameHostMsg_ShowPopup,
975 FrameHostMsg_ShowPopup_Params) 976 FrameHostMsg_ShowPopup_Params)
976 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup) 977 IPC_MESSAGE_ROUTED0(FrameHostMsg_HidePopup)
977 978
978 #endif 979 #endif
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698