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

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

Issue 46055: RSS feed support (part 1), 2nd attempt (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « chrome/common/render_messages.h ('k') | chrome/renderer/render_view.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 1190 matching lines...) Expand 10 before | Expand all | Expand 10 after
1201 // will return the route id on success. On error returns MSG_ROUTING_NONE. 1201 // will return the route id on success. On error returns MSG_ROUTING_NONE.
1202 IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_CreateDedicatedWorker, 1202 IPC_SYNC_MESSAGE_CONTROL1_1(ViewHostMsg_CreateDedicatedWorker,
1203 GURL /* url */, 1203 GURL /* url */,
1204 int /* route_id */) 1204 int /* route_id */)
1205 1205
1206 // Wraps an IPC message that's destined to the worker on the renderer->browser 1206 // Wraps an IPC message that's destined to the worker on the renderer->browser
1207 // hop. 1207 // hop.
1208 IPC_MESSAGE_CONTROL1(ViewHostMsg_ForwardToWorker, 1208 IPC_MESSAGE_CONTROL1(ViewHostMsg_ForwardToWorker,
1209 IPC::Message /* message */) 1209 IPC::Message /* message */)
1210 1210
1211 // Notification when new feeds have been discovered on the page.
1212 IPC_MESSAGE_ROUTED1(ViewHostMsg_UpdateFeedList,
1213 ViewHostMsg_UpdateFeedList_Params)
1211 IPC_END_MESSAGES(ViewHost) 1214 IPC_END_MESSAGES(ViewHost)
OLDNEW
« no previous file with comments | « chrome/common/render_messages.h ('k') | chrome/renderer/render_view.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698