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

Unified Diff: android_webview/browser/net/aw_network_delegate.cc

Issue 2786583002: chromeos: Check both original and absolute paths for file: scheme (Closed)
Patch Set: remove dcheck Created 3 years, 7 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
Index: android_webview/browser/net/aw_network_delegate.cc
diff --git a/android_webview/browser/net/aw_network_delegate.cc b/android_webview/browser/net/aw_network_delegate.cc
index e37915c3c2829700aa4a685d5dca7c89400244f5..144f5e5419b5b3dc027378a9a7d0f7ccc4c5a7d7 100644
--- a/android_webview/browser/net/aw_network_delegate.cc
+++ b/android_webview/browser/net/aw_network_delegate.cc
@@ -147,8 +147,10 @@ bool AwNetworkDelegate::OnCanSetCookie(const net::URLRequest& request,
options);
}
-bool AwNetworkDelegate::OnCanAccessFile(const net::URLRequest& request,
- const base::FilePath& path) const {
+bool AwNetworkDelegate::OnCanAccessFile(
+ const net::URLRequest& request,
+ const base::FilePath& original_path,
+ const base::FilePath& absolute_path) const {
return true;
}
« no previous file with comments | « android_webview/browser/net/aw_network_delegate.h ('k') | chrome/browser/android/offline_pages/offline_page_request_job.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698