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

Unified Diff: net/proxy/network_delegate_error_observer_unittest.cc

Issue 10440119: Introduce a delegate to avoid hardcoding "chrome-extension" in net/. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Respond to review requests. Created 8 years, 6 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 7c8efdff2e7b9786697ef022d0079b6e6d1a3a4f..9e1971974a049da5ff0652a7b49d4d216cf4631e 100644
--- a/net/proxy/network_delegate_error_observer_unittest.cc
+++ b/net/proxy/network_delegate_error_observer_unittest.cc
@@ -76,6 +76,9 @@ class TestNetworkDelegate : public net::NetworkDelegate {
const FilePath& path) const OVERRIDE {
return true;
}
+ virtual bool OnCanRejectRequest(const URLRequest& request) const OVERRIDE {
+ return false;
+ }
bool got_pac_error_;
};

Powered by Google App Engine
This is Rietveld 408576698