Index: net/base/layered_network_delegate.cc |
diff --git a/net/base/layered_network_delegate.cc b/net/base/layered_network_delegate.cc |
index 41c22c162c3165291399dead7c0beeee0ea98fd3..4718c4b21f2614738ee16369186bccdf237704dd 100644 |
--- a/net/base/layered_network_delegate.cc |
+++ b/net/base/layered_network_delegate.cc |
@@ -203,16 +203,19 @@ void LayeredNetworkDelegate::OnCanSetCookieInternal( |
CookieOptions* options) { |
} |
-bool LayeredNetworkDelegate::OnCanAccessFile(const URLRequest& request, |
- const base::FilePath& path) const { |
- OnCanAccessFileInternal(request, path); |
- return nested_network_delegate_->CanAccessFile(request, path); |
+bool LayeredNetworkDelegate::OnCanAccessFile( |
+ const URLRequest& request, |
+ const base::FilePath& original_path, |
+ const base::FilePath& absolute_path) const { |
+ OnCanAccessFileInternal(request, original_path, absolute_path); |
+ return nested_network_delegate_->CanAccessFile(request, original_path, |
+ absolute_path); |
} |
void LayeredNetworkDelegate::OnCanAccessFileInternal( |
const URLRequest& request, |
- const base::FilePath& path) const { |
-} |
+ const base::FilePath& original_path, |
+ const base::FilePath& absolute_path) const {} |
bool LayeredNetworkDelegate::OnCanEnablePrivacyMode( |
const GURL& url, |