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

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

Issue 7461106: Inform disk cache of WebKit memory cache hits. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove rank from test Created 9 years, 4 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) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 "content/common/common_param_traits.h" 10 #include "content/common/common_param_traits.h"
(...skipping 1390 matching lines...) Expand 10 before | Expand all | Expand 10 after
1401 1401
1402 // Sent when after the onload handler has been invoked for the document 1402 // Sent when after the onload handler has been invoked for the document
1403 // in the toplevel frame. 1403 // in the toplevel frame.
1404 IPC_MESSAGE_ROUTED1(ViewHostMsg_DocumentOnLoadCompletedInMainFrame, 1404 IPC_MESSAGE_ROUTED1(ViewHostMsg_DocumentOnLoadCompletedInMainFrame,
1405 int32 /* page_id */) 1405 int32 /* page_id */)
1406 1406
1407 // Sent when the renderer loads a resource from its memory cache. 1407 // Sent when the renderer loads a resource from its memory cache.
1408 // The security info is non empty if the resource was originally loaded over 1408 // The security info is non empty if the resource was originally loaded over
1409 // a secure connection. 1409 // a secure connection.
1410 // Note: May only be sent once per URL per frame per committed load. 1410 // Note: May only be sent once per URL per frame per committed load.
1411 IPC_MESSAGE_ROUTED2(ViewHostMsg_DidLoadResourceFromMemoryCache, 1411 IPC_MESSAGE_ROUTED4(ViewHostMsg_DidLoadResourceFromMemoryCache,
1412 GURL /* url */, 1412 GURL /* url */,
1413 std::string /* security info */) 1413 std::string /* security info */,
1414 std::string /* http method */,
1415 ResourceType::Type /* resource type */)
1414 1416
1415 // Sent when the renderer displays insecure content in a secure page. 1417 // Sent when the renderer displays insecure content in a secure page.
1416 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidDisplayInsecureContent) 1418 IPC_MESSAGE_ROUTED0(ViewHostMsg_DidDisplayInsecureContent)
1417 1419
1418 // Sent when the renderer runs insecure content in a secure origin. 1420 // Sent when the renderer runs insecure content in a secure origin.
1419 IPC_MESSAGE_ROUTED2(ViewHostMsg_DidRunInsecureContent, 1421 IPC_MESSAGE_ROUTED2(ViewHostMsg_DidRunInsecureContent,
1420 std::string /* security_origin */, 1422 std::string /* security_origin */,
1421 GURL /* target URL */) 1423 GURL /* target URL */)
1422 1424
1423 // Sent when the renderer starts a provisional load for a frame. 1425 // Sent when the renderer starts a provisional load for a frame.
(...skipping 572 matching lines...) Expand 10 before | Expand all | Expand 10 after
1996 1998
1997 IPC_MESSAGE_ROUTED3(ViewHostMsg_SendCurrentPageAllSavableResourceLinks, 1999 IPC_MESSAGE_ROUTED3(ViewHostMsg_SendCurrentPageAllSavableResourceLinks,
1998 std::vector<GURL> /* all savable resource links */, 2000 std::vector<GURL> /* all savable resource links */,
1999 std::vector<GURL> /* all referrers of resource links */, 2001 std::vector<GURL> /* all referrers of resource links */,
2000 std::vector<GURL> /* all frame links */) 2002 std::vector<GURL> /* all frame links */)
2001 2003
2002 IPC_MESSAGE_ROUTED3(ViewHostMsg_SendSerializedHtmlData, 2004 IPC_MESSAGE_ROUTED3(ViewHostMsg_SendSerializedHtmlData,
2003 GURL /* frame's url */, 2005 GURL /* frame's url */,
2004 std::string /* data buffer */, 2006 std::string /* data buffer */,
2005 int32 /* complete status */) 2007 int32 /* complete status */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698