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

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

Issue 12243002: Pass WebKit priority changes and parsing messages up to the browser process. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rename IPC Created 7 years, 10 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 | « content/common/resource_messages.h ('k') | content/public/common/common_param_traits_macros.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) 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 // IPC messages for page rendering. 5 // IPC messages for page rendering.
6 // Multiply-included message file, hence no include guard. 6 // Multiply-included message file, hence no include guard.
7 7
8 #include "base/process.h" 8 #include "base/process.h"
9 #include "base/shared_memory.h" 9 #include "base/shared_memory.h"
10 #include "base/string16.h" 10 #include "base/string16.h"
(...skipping 2376 matching lines...) Expand 10 before | Expand all | Expand 10 after
2387 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters 2387 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters
2388 // for details. 2388 // for details.
2389 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, 2389 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters,
2390 LOGFONT /* font_data */, 2390 LOGFONT /* font_data */,
2391 string16 /* characters */) 2391 string16 /* characters */)
2392 #endif 2392 #endif
2393 2393
2394 // Notifies the browser that the frame with the given id was detached. 2394 // Notifies the browser that the frame with the given id was detached.
2395 IPC_MESSAGE_ROUTED1(ViewHostMsg_FrameDetached, 2395 IPC_MESSAGE_ROUTED1(ViewHostMsg_FrameDetached,
2396 int64 /* frame_id */) 2396 int64 /* frame_id */)
2397
2398 // Notifies the browser that document has parsed the body. This is used by the
2399 // ResourceScheduler as an indication that bandwidth contention won't block
2400 // first paint.
2401 IPC_MESSAGE_ROUTED0(ViewHostMsg_WillInsertBody)
Cris Neckar 2013/02/11 23:14:12 Please also get a security review when you land th
willchan no longer on Chromium 2013/02/11 23:20:49 I haven't read this CL, but if there's no handler
OLDNEW
« no previous file with comments | « content/common/resource_messages.h ('k') | content/public/common/common_param_traits_macros.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698