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

Side by Side Diff: chrome/common/render_messages_internal.h

Issue 17281: This is a rename of the term 'Greasemonkey' to 'user script' in Chromium. (Closed)
Patch Set: Fix indent Created 11 years, 11 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 | « chrome/common/notification_types.h ('k') | chrome/renderer/greasemonkey_slave.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 (c) 2006-2008 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2006-2008 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 // This header is meant to be included in multiple passes, hence no traditional 5 // This header is meant to be included in multiple passes, hence no traditional
6 // header guard. 6 // header guard.
7 // See ipc_message_macros.h for explanation of the macros and passes. 7 // See ipc_message_macros.h for explanation of the macros and passes.
8 8
9 #include <string> 9 #include <string>
10 #include <vector> 10 #include <vector>
(...skipping 147 matching lines...) Expand 10 before | Expand all | Expand 10 after
158 // image at that location). 158 // image at that location).
159 IPC_MESSAGE_ROUTED2(ViewMsg_CopyImageAt, 159 IPC_MESSAGE_ROUTED2(ViewMsg_CopyImageAt,
160 int /* x */, 160 int /* x */,
161 int /* y */) 161 int /* y */)
162 162
163 // History system notification that the visited link database has been 163 // History system notification that the visited link database has been
164 // replaced. It has one SharedMemoryHandle argument consisting of the table 164 // replaced. It has one SharedMemoryHandle argument consisting of the table
165 // handle. This handle is valid in the context of the renderer 165 // handle. This handle is valid in the context of the renderer
166 IPC_MESSAGE_CONTROL1(ViewMsg_VisitedLink_NewTable, base::SharedMemoryHandle) 166 IPC_MESSAGE_CONTROL1(ViewMsg_VisitedLink_NewTable, base::SharedMemoryHandle)
167 167
168 // Notification that the Greasemonkey scripts have been updated. It has one 168 // Notification that the user scripts have been updated. It has one
169 // SharedMemoryHandle argument consisting of the pickled script data. This 169 // SharedMemoryHandle argument consisting of the pickled script data. This
170 // handle is valid in the context of the renderer. 170 // handle is valid in the context of the renderer.
171 IPC_MESSAGE_CONTROL1(ViewMsg_Greasemonkey_NewScripts, base::SharedMemoryHandle ) 171 IPC_MESSAGE_CONTROL1(ViewMsg_UserScripts_NewScripts, base::SharedMemoryHandle)
172 172
173 // Sent when the user wants to search for a word on the page (find in page). 173 // Sent when the user wants to search for a word on the page (find in page).
174 // Request parameters are passed in as a FindInPageMsg_Request struct. 174 // Request parameters are passed in as a FindInPageMsg_Request struct.
175 IPC_MESSAGE_ROUTED1(ViewMsg_Find, FindInPageRequest) 175 IPC_MESSAGE_ROUTED1(ViewMsg_Find, FindInPageRequest)
176 176
177 // Sent when the headers are available for a resource request. 177 // Sent when the headers are available for a resource request.
178 IPC_MESSAGE_ROUTED2(ViewMsg_Resource_ReceivedResponse, 178 IPC_MESSAGE_ROUTED2(ViewMsg_Resource_ReceivedResponse,
179 int /* request_id */, 179 int /* request_id */,
180 ViewMsg_Resource_ResponseHead) 180 ViewMsg_Resource_ResponseHead)
181 181
(...skipping 924 matching lines...) Expand 10 before | Expand all | Expand 10 after
1106 #endif // defined(OS_WIN) 1106 #endif // defined(OS_WIN)
1107 1107
1108 // Queries the browser for suggestion for autofill in a form input field. 1108 // Queries the browser for suggestion for autofill in a form input field.
1109 IPC_MESSAGE_ROUTED4(ViewHostMsg_QueryFormFieldAutofill, 1109 IPC_MESSAGE_ROUTED4(ViewHostMsg_QueryFormFieldAutofill,
1110 std::wstring /* field name */, 1110 std::wstring /* field name */,
1111 std::wstring /* user entered text */, 1111 std::wstring /* user entered text */,
1112 int64 /* id of the text input field */, 1112 int64 /* id of the text input field */,
1113 int /* id of this message */) 1113 int /* id of this message */)
1114 1114
1115 IPC_END_MESSAGES(ViewHost) 1115 IPC_END_MESSAGES(ViewHost)
OLDNEW
« no previous file with comments | « chrome/common/notification_types.h ('k') | chrome/renderer/greasemonkey_slave.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698