| Index: chrome/renderer/render_view.cc
|
| ===================================================================
|
| --- chrome/renderer/render_view.cc (revision 29248)
|
| +++ chrome/renderer/render_view.cc (working copy)
|
| @@ -1906,6 +1906,24 @@
|
| return default_policy;
|
| }
|
|
|
| +bool RenderView::canHandleRequest(const WebKit::WebURLRequest& request) {
|
| + return true;
|
| +}
|
| +
|
| +WebKit::WebURLError RenderView::cannotShowURLError(
|
| + const WebKit::WebURLRequest& request) {
|
| + // No need to set fields of WebURLError. It is passed to
|
| + // unableToImplementPolicyWithError() below.
|
| + return WebKit::WebURLError();
|
| +}
|
| +
|
| +void RenderView::unableToImplementPolicyWithError(
|
| + WebFrame*, const WebKit::WebURLError&) {
|
| + // We don't need to do anything here.
|
| + // The implementations of this method in WebKit/mac WebKit/win are
|
| + // just to log some information of the parameters.
|
| +}
|
| +
|
| void RenderView::willSubmitForm(WebFrame* frame, const WebForm& form) {
|
| NavigationState* navigation_state =
|
| NavigationState::FromDataSource(frame->provisionalDataSource());
|
|
|