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

Side by Side Diff: net/proxy/network_delegate_error_observer_unittest.cc

Issue 667923003: Standardize usage of virtual/override/final in net/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 2 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 unified diff | Download patch
« no previous file with comments | « net/proxy/network_delegate_error_observer.h ('k') | net/proxy/polling_proxy_config_service.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "net/proxy/network_delegate_error_observer.h" 5 #include "net/proxy/network_delegate_error_observer.h"
6 6
7 #include "base/bind.h" 7 #include "base/bind.h"
8 #include "base/bind_helpers.h" 8 #include "base/bind_helpers.h"
9 #include "base/message_loop/message_loop_proxy.h" 9 #include "base/message_loop/message_loop_proxy.h"
10 #include "base/threading/thread.h" 10 #include "base/threading/thread.h"
11 #include "net/base/net_errors.h" 11 #include "net/base/net_errors.h"
12 #include "net/base/network_delegate.h" 12 #include "net/base/network_delegate.h"
13 #include "testing/gtest/include/gtest/gtest.h" 13 #include "testing/gtest/include/gtest/gtest.h"
14 14
15 namespace net { 15 namespace net {
16 16
17 namespace { 17 namespace {
18 18
19 class TestNetworkDelegate : public net::NetworkDelegate { 19 class TestNetworkDelegate : public net::NetworkDelegate {
20 public: 20 public:
21 TestNetworkDelegate() : got_pac_error_(false) {} 21 TestNetworkDelegate() : got_pac_error_(false) {}
22 virtual ~TestNetworkDelegate() {} 22 ~TestNetworkDelegate() override {}
23 23
24 bool got_pac_error() const { return got_pac_error_; } 24 bool got_pac_error() const { return got_pac_error_; }
25 25
26 private: 26 private:
27 // net::NetworkDelegate implementation. 27 // net::NetworkDelegate implementation.
28 virtual int OnBeforeURLRequest(URLRequest* request, 28 int OnBeforeURLRequest(URLRequest* request,
29 const CompletionCallback& callback, 29 const CompletionCallback& callback,
30 GURL* new_url) override { 30 GURL* new_url) override {
31 return OK; 31 return OK;
32 } 32 }
33 virtual int OnBeforeSendHeaders(URLRequest* request, 33 int OnBeforeSendHeaders(URLRequest* request,
34 const CompletionCallback& callback, 34 const CompletionCallback& callback,
35 HttpRequestHeaders* headers) override { 35 HttpRequestHeaders* headers) override {
36 return OK; 36 return OK;
37 } 37 }
38 virtual void OnSendHeaders(URLRequest* request, 38 void OnSendHeaders(URLRequest* request,
39 const HttpRequestHeaders& headers) override {} 39 const HttpRequestHeaders& headers) override {}
40 virtual int OnHeadersReceived( 40 int OnHeadersReceived(
41 URLRequest* request, 41 URLRequest* request,
42 const CompletionCallback& callback, 42 const CompletionCallback& callback,
43 const HttpResponseHeaders* original_response_headers, 43 const HttpResponseHeaders* original_response_headers,
44 scoped_refptr<HttpResponseHeaders>* override_response_headers, 44 scoped_refptr<HttpResponseHeaders>* override_response_headers,
45 GURL* allowed_unsafe_redirect_url) override { 45 GURL* allowed_unsafe_redirect_url) override {
46 return net::OK; 46 return net::OK;
47 } 47 }
48 virtual void OnBeforeRedirect(URLRequest* request, 48 void OnBeforeRedirect(URLRequest* request,
49 const GURL& new_location) override {} 49 const GURL& new_location) override {}
50 virtual void OnResponseStarted(URLRequest* request) override {} 50 void OnResponseStarted(URLRequest* request) override {}
51 virtual void OnRawBytesRead(const URLRequest& request, 51 void OnRawBytesRead(const URLRequest& request, int bytes_read) override {}
52 int bytes_read) override {} 52 void OnCompleted(URLRequest* request, bool started) override {}
53 virtual void OnCompleted(URLRequest* request, bool started) override {} 53 void OnURLRequestDestroyed(URLRequest* request) override {}
54 virtual void OnURLRequestDestroyed(URLRequest* request) override {}
55 54
56 virtual void OnPACScriptError(int line_number, 55 void OnPACScriptError(int line_number, const base::string16& error) override {
57 const base::string16& error) override {
58 got_pac_error_ = true; 56 got_pac_error_ = true;
59 } 57 }
60 virtual AuthRequiredResponse OnAuthRequired( 58 AuthRequiredResponse OnAuthRequired(URLRequest* request,
61 URLRequest* request, 59 const AuthChallengeInfo& auth_info,
62 const AuthChallengeInfo& auth_info, 60 const AuthCallback& callback,
63 const AuthCallback& callback, 61 AuthCredentials* credentials) override {
64 AuthCredentials* credentials) override {
65 return AUTH_REQUIRED_RESPONSE_NO_ACTION; 62 return AUTH_REQUIRED_RESPONSE_NO_ACTION;
66 } 63 }
67 virtual bool OnCanGetCookies(const URLRequest& request, 64 bool OnCanGetCookies(const URLRequest& request,
68 const CookieList& cookie_list) override { 65 const CookieList& cookie_list) override {
69 return true; 66 return true;
70 } 67 }
71 virtual bool OnCanSetCookie(const URLRequest& request, 68 bool OnCanSetCookie(const URLRequest& request,
72 const std::string& cookie_line, 69 const std::string& cookie_line,
73 CookieOptions* options) override { 70 CookieOptions* options) override {
74 return true; 71 return true;
75 } 72 }
76 virtual bool OnCanAccessFile(const net::URLRequest& request, 73 bool OnCanAccessFile(const net::URLRequest& request,
77 const base::FilePath& path) const override { 74 const base::FilePath& path) const override {
78 return true; 75 return true;
79 } 76 }
80 virtual bool OnCanThrottleRequest(const URLRequest& request) const override { 77 bool OnCanThrottleRequest(const URLRequest& request) const override {
81 return false; 78 return false;
82 } 79 }
83 virtual int OnBeforeSocketStreamConnect( 80 int OnBeforeSocketStreamConnect(SocketStream* stream,
84 SocketStream* stream, 81 const CompletionCallback& callback) override {
85 const CompletionCallback& callback) override {
86 return OK; 82 return OK;
87 } 83 }
88 84
89 bool got_pac_error_; 85 bool got_pac_error_;
90 }; 86 };
91 87
92 } // namespace 88 } // namespace
93 89
94 // Check that the OnPACScriptError method can be called from an arbitrary 90 // Check that the OnPACScriptError method can be called from an arbitrary
95 // thread. 91 // thread.
(...skipping 25 matching lines...) Expand all
121 base::Bind(&NetworkDelegateErrorObserver::OnPACScriptError, 117 base::Bind(&NetworkDelegateErrorObserver::OnPACScriptError,
122 base::Unretained(&observer), 118 base::Unretained(&observer),
123 42, 119 42,
124 base::string16())); 120 base::string16()));
125 thread.Stop(); 121 thread.Stop();
126 base::MessageLoop::current()->RunUntilIdle(); 122 base::MessageLoop::current()->RunUntilIdle();
127 // Shouldn't have crashed until here... 123 // Shouldn't have crashed until here...
128 } 124 }
129 125
130 } // namespace net 126 } // namespace net
OLDNEW
« no previous file with comments | « net/proxy/network_delegate_error_observer.h ('k') | net/proxy/polling_proxy_config_service.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698