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

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

Issue 11825011: Componentize visitedlinks to src/components/visitedlink (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Add security OWNERS for ipc message. Created 7 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 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 // Multiply-included file, no traditional include guard. 5 // Multiply-included file, no traditional include guard.
6 #include <map> 6 #include <map>
7 #include <set> 7 #include <set>
8 #include <string> 8 #include <string>
9 #include <vector> 9 #include <vector>
10 10
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
245 IPC_MESSAGE_ROUTED4(ChromeViewMsg_WebUIJavaScript, 245 IPC_MESSAGE_ROUTED4(ChromeViewMsg_WebUIJavaScript,
246 string16, /* frame_xpath */ 246 string16, /* frame_xpath */
247 string16, /* jscript_url */ 247 string16, /* jscript_url */
248 int, /* ID */ 248 int, /* ID */
249 bool /* If true, result is sent back. */) 249 bool /* If true, result is sent back. */)
250 250
251 // Tells the render view to capture a thumbnail image of the page. The 251 // Tells the render view to capture a thumbnail image of the page. The
252 // render view responds with a ChromeViewHostMsg_Snapshot. 252 // render view responds with a ChromeViewHostMsg_Snapshot.
253 IPC_MESSAGE_ROUTED0(ChromeViewMsg_CaptureSnapshot) 253 IPC_MESSAGE_ROUTED0(ChromeViewMsg_CaptureSnapshot)
254 254
255 // History system notification that the visited link database has been
256 // replaced. It has one SharedMemoryHandle argument consisting of the table
257 // handle. This handle is valid in the context of the renderer
258 IPC_MESSAGE_CONTROL1(ChromeViewMsg_VisitedLink_NewTable,
259 base::SharedMemoryHandle)
260
261 // History system notification that a link has been added and the link
262 // coloring state for the given hash must be re-calculated.
263 IPC_MESSAGE_CONTROL1(ChromeViewMsg_VisitedLink_Add, std::vector<uint64>)
264
265 // History system notification that one or more history items have been
266 // deleted, which at this point means that all link coloring state must be
267 // re-calculated.
268 IPC_MESSAGE_CONTROL0(ChromeViewMsg_VisitedLink_Reset)
269
270 // Set the content setting rules stored by the renderer. 255 // Set the content setting rules stored by the renderer.
271 IPC_MESSAGE_CONTROL1(ChromeViewMsg_SetContentSettingRules, 256 IPC_MESSAGE_CONTROL1(ChromeViewMsg_SetContentSettingRules,
272 RendererContentSettingRules /* rules */) 257 RendererContentSettingRules /* rules */)
273 258
274 // Tells the render view to load all blocked plugins with the given identifier. 259 // Tells the render view to load all blocked plugins with the given identifier.
275 IPC_MESSAGE_ROUTED1(ChromeViewMsg_LoadBlockedPlugins, 260 IPC_MESSAGE_ROUTED1(ChromeViewMsg_LoadBlockedPlugins,
276 std::string /* identifier */) 261 std::string /* identifier */)
277 262
278 // Asks the renderer to send back stats on the WebCore cache broken down by 263 // Asks the renderer to send back stats on the WebCore cache broken down by
279 // resource types. 264 // resource types.
(...skipping 431 matching lines...) Expand 10 before | Expand all | Expand 10 after
711 // previous SetCookie message to be processed. 696 // previous SetCookie message to be processed.
712 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies, 697 IPC_SYNC_MESSAGE_ROUTED2_1(ChromeViewHostMsg_GetCookies,
713 GURL /* url */, 698 GURL /* url */,
714 GURL /* first_party_for_cookies */, 699 GURL /* first_party_for_cookies */,
715 std::string /* cookies */) 700 std::string /* cookies */)
716 701
717 // Provide the browser process with current renderer framerate. 702 // Provide the browser process with current renderer framerate.
718 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS, 703 IPC_MESSAGE_CONTROL2(ChromeViewHostMsg_FPS,
719 int /* routing id */, 704 int /* routing id */,
720 float /* frames per second */) 705 float /* frames per second */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698