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

Unified Diff: content/shell/shell_network_delegate.cc

Issue 10068021: Fix file access on Chrome for ChromeOS on Linux (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fixed clang problem Created 8 years, 8 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: content/shell/shell_network_delegate.cc
diff --git a/content/shell/shell_network_delegate.cc b/content/shell/shell_network_delegate.cc
index 91bd3496974043504d1dea4765883c881239df6c..3904fe5bf9e17372a490e5fd7c14ab610f5d12c7 100644
--- a/content/shell/shell_network_delegate.cc
+++ b/content/shell/shell_network_delegate.cc
@@ -82,4 +82,9 @@ bool ShellNetworkDelegate::CanSetCookie(const net::URLRequest* request,
return true;
}
+bool ShellNetworkDelegate::CanAccessFile(const net::URLRequest* request,
+ const FilePath& path) {
+ return true;
+}
+
} // namespace content

Powered by Google App Engine
This is Rietveld 408576698