Chromium Code Reviews| 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; |
| } |