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

Unified Diff: webkit/glue/webview_delegate.h

Issue 46094: Fix our handling of mixed SSL / non-SSL content.... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 11 years, 9 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 side-by-side diff with in-line comments
Download patch
« net/base/x509_certificate.h ('K') | « webkit/glue/webframeloaderclient_impl.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webkit/glue/webview_delegate.h
===================================================================
--- webkit/glue/webview_delegate.h (revision 11701)
+++ webkit/glue/webview_delegate.h (working copy)
@@ -345,10 +345,13 @@
// This method is called when we load a resource from an in-memory cache.
// A return value of |false| indicates the load should proceed, but WebCore
// appears to largely ignore the return value.
- virtual bool DidLoadResourceFromMemoryCache(WebView* webview,
- const WebRequest& request,
- const WebResponse& response,
- WebFrame* frame) {
+ virtual bool DidLoadResourceFromMemoryCache(
+ WebView* webview,
+ const WebRequest& request,
+ const WebResponse& response,
+ WebFrame* frame,
+ const std::string& frame_origin,
jcampan 2009/03/16 18:43:54 Would it make sense to make the frame origins gett
abarth-chromium 2009/03/16 21:34:21 I'm not sure that makes sense. It's not really a
+ const std::string& main_frame_origin) {
return false;
}
« net/base/x509_certificate.h ('K') | « webkit/glue/webframeloaderclient_impl.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698