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

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

Issue 11270027: Add a ResourceScheduler to ResourceDispatcherHost. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Handle duplicate RenderViewReady messages Created 8 years 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 // 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 2441 matching lines...) Expand 10 before | Expand all | Expand 10 after
2452 int /* arb_robustness_status_code */) 2452 int /* arb_robustness_status_code */)
2453 2453
2454 #if defined(OS_WIN) 2454 #if defined(OS_WIN)
2455 // Request that the given font characters be loaded by the browser so it's 2455 // Request that the given font characters be loaded by the browser so it's
2456 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters 2456 // cached by the OS. Please see RenderMessageFilter::OnPreCacheFontCharacters
2457 // for details. 2457 // for details.
2458 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters, 2458 IPC_SYNC_MESSAGE_CONTROL2_0(ViewHostMsg_PreCacheFontCharacters,
2459 LOGFONT /* font_data */, 2459 LOGFONT /* font_data */,
2460 string16 /* characters */) 2460 string16 /* characters */)
2461 #endif 2461 #endif
2462
2463 // Sent by the renderer process to indicate that the first paint has been
2464 // performed for the current navigation.
2465 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidFirstPaint)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698