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

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

Issue 10387090: Pass the referrer policy with the referrer for the save package code path (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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 // 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/content_export.h" 10 #include "content/common/content_export.h"
(...skipping 1978 matching lines...) Expand 10 before | Expand all | Expand 10 after
1989 IPC_MESSAGE_CONTROL1(ViewHostMsg_UserMetricsRecordAction, 1989 IPC_MESSAGE_CONTROL1(ViewHostMsg_UserMetricsRecordAction,
1990 std::string /* action */) 1990 std::string /* action */)
1991 1991
1992 // Notifies the browser that the page was or was not saved as MHTML. 1992 // Notifies the browser that the page was or was not saved as MHTML.
1993 IPC_MESSAGE_CONTROL2(ViewHostMsg_SavedPageAsMHTML, 1993 IPC_MESSAGE_CONTROL2(ViewHostMsg_SavedPageAsMHTML,
1994 int /* job_id */, 1994 int /* job_id */,
1995 int64 /* size of the MHTML file, -1 if error */) 1995 int64 /* size of the MHTML file, -1 if error */)
1996 1996
1997 IPC_MESSAGE_ROUTED3(ViewHostMsg_SendCurrentPageAllSavableResourceLinks, 1997 IPC_MESSAGE_ROUTED3(ViewHostMsg_SendCurrentPageAllSavableResourceLinks,
1998 std::vector<GURL> /* all savable resource links */, 1998 std::vector<GURL> /* all savable resource links */,
1999 std::vector<GURL> /* all referrers of resource links */, 1999 std::vector<content::Referrer> /* all referrers */,
2000 std::vector<GURL> /* all frame links */) 2000 std::vector<GURL> /* all frame links */)
2001 2001
2002 IPC_MESSAGE_ROUTED3(ViewHostMsg_SendSerializedHtmlData, 2002 IPC_MESSAGE_ROUTED3(ViewHostMsg_SendSerializedHtmlData,
2003 GURL /* frame's url */, 2003 GURL /* frame's url */,
2004 std::string /* data buffer */, 2004 std::string /* data buffer */,
2005 int32 /* complete status */) 2005 int32 /* complete status */)
2006 2006
2007 // Notifies the browser of an event occurring in the media pipeline. 2007 // Notifies the browser of an event occurring in the media pipeline.
2008 IPC_MESSAGE_CONTROL1(ViewHostMsg_MediaLogEvent, 2008 IPC_MESSAGE_CONTROL1(ViewHostMsg_MediaLogEvent,
2009 media::MediaLogEvent /* event */) 2009 media::MediaLogEvent /* event */)
(...skipping 18 matching lines...) Expand all
2028 int /* automation_id */) 2028 int /* automation_id */)
2029 2029
2030 // Sent to the browser when the renderer detects it is blocked on a pepper 2030 // Sent to the browser when the renderer detects it is blocked on a pepper
2031 // plugin message for too long. This is also sent when it becomes unhung 2031 // plugin message for too long. This is also sent when it becomes unhung
2032 // (according to the value of is_hung). The browser can give the user the 2032 // (according to the value of is_hung). The browser can give the user the
2033 // option of killing the plugin. 2033 // option of killing the plugin.
2034 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung, 2034 IPC_MESSAGE_ROUTED3(ViewHostMsg_PepperPluginHung,
2035 int /* plugin_child_id */, 2035 int /* plugin_child_id */,
2036 FilePath /* path */, 2036 FilePath /* path */,
2037 bool /* is_hung */) 2037 bool /* is_hung */)
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698