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

Unified Diff: net/proxy/network_delegate_error_observer_unittest.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: net/proxy/network_delegate_error_observer_unittest.cc
diff --git a/net/proxy/network_delegate_error_observer_unittest.cc b/net/proxy/network_delegate_error_observer_unittest.cc
index f4b4ba75b15248389d2ed8812d2146d9aaa08fbc..9717945d25b7a982723ae57d80c408bec12dd0d3 100644
--- a/net/proxy/network_delegate_error_observer_unittest.cc
+++ b/net/proxy/network_delegate_error_observer_unittest.cc
@@ -74,6 +74,10 @@ class TestNetworkDelegate : public net::NetworkDelegate {
CookieOptions* options) OVERRIDE {
return true;
}
+ virtual bool CanAccessFile(const net::URLRequest* request,
+ const FilePath& path) OVERRIDE {
+ return true;
+ }
bool got_pac_error_;
};

Powered by Google App Engine
This is Rietveld 408576698