diff options
author | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-17 06:11:08 +0000 |
---|---|---|
committer | abarth@chromium.org <abarth@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-03-17 06:11:08 +0000 |
commit | ffc45869f044885b81265e6a67cb0220758113b5 (patch) | |
tree | 68ba60b8eb08874679f8ed64d81ecbb1332eaceb /chrome/common | |
parent | df79e9bcac70987b6bd1f7e96f2dfb454b90b559 (diff) | |
download | chromium_src-ffc45869f044885b81265e6a67cb0220758113b5.zip chromium_src-ffc45869f044885b81265e6a67cb0220758113b5.tar.gz chromium_src-ffc45869f044885b81265e6a67cb0220758113b5.tar.bz2 |
SSL Fix: Step 4.
Plumb the security origin information for memory cache loads too.
R=wtc
BUG=8706
Review URL: http://codereview.chromium.org/42263
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@11850 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/common')
-rw-r--r-- | chrome/common/render_messages_internal.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/common/render_messages_internal.h b/chrome/common/render_messages_internal.h index eb6dc2b6..dedf4774 100644 --- a/chrome/common/render_messages_internal.h +++ b/chrome/common/render_messages_internal.h @@ -627,8 +627,10 @@ IPC_BEGIN_MESSAGES(ViewHost) // The security info is non empty if the resource was originally loaded over // a secure connection. // Note: May only be sent once per URL per frame per committed load. - IPC_MESSAGE_ROUTED2(ViewHostMsg_DidLoadResourceFromMemoryCache, + IPC_MESSAGE_ROUTED4(ViewHostMsg_DidLoadResourceFromMemoryCache, GURL /* url */, + std::string /* frame_origin */, + std::string /* main_frame_origin */, std::string /* security info */) // Sent when the renderer starts a provisional load for a frame. |