Index: content/shell/shell_content_browser_client.cc |
=================================================================== |
--- content/shell/shell_content_browser_client.cc (revision 113019) |
+++ content/shell/shell_content_browser_client.cc (working copy) |
@@ -9,6 +9,7 @@ |
#include "content/shell/shell.h" |
#include "content/shell/shell_browser_main.h" |
#include "googleurl/src/gurl.h" |
+#include "net/url_request/url_request.h" |
#include "third_party/skia/include/core/SkBitmap.h" |
#include "webkit/glue/webpreferences.h" |
@@ -82,6 +83,10 @@ |
return false; |
} |
+bool ShellContentBrowserClient::IsHandledURL(const GURL& url) { |
+ return net::URLRequest::IsHandledURL(); |
+} |
+ |
bool ShellContentBrowserClient::IsSuitableHost( |
RenderProcessHost* process_host, |
const GURL& site_url) { |