| OLD | NEW | 
|   1 // Copyright 2014 The Chromium Authors. All rights reserved. |   1 // Copyright 2014 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 #ifndef NET_BASE_PROXY_DELEGATE_H_ |   5 #ifndef NET_BASE_PROXY_DELEGATE_H_ | 
|   6 #define NET_BASE_PROXY_DELEGATE_H_ |   6 #define NET_BASE_PROXY_DELEGATE_H_ | 
|   7  |   7  | 
|   8 #include <string> |   8 #include <string> | 
|   9  |   9  | 
|  10 #include "base/macros.h" |  10 #include "base/macros.h" | 
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  79       ProxyServer* alternative_proxy_server) const = 0; |  79       ProxyServer* alternative_proxy_server) const = 0; | 
|  80  |  80  | 
|  81   // Notifies the ProxyDelegate that |alternative_proxy_server| is broken. |  81   // Notifies the ProxyDelegate that |alternative_proxy_server| is broken. | 
|  82   virtual void OnAlternativeProxyBroken( |  82   virtual void OnAlternativeProxyBroken( | 
|  83       const ProxyServer& alternative_proxy_server) = 0; |  83       const ProxyServer& alternative_proxy_server) = 0; | 
|  84  |  84  | 
|  85  private: |  85  private: | 
|  86   DISALLOW_COPY_AND_ASSIGN(ProxyDelegate); |  86   DISALLOW_COPY_AND_ASSIGN(ProxyDelegate); | 
|  87 }; |  87 }; | 
|  88  |  88  | 
|  89 } |  89 }  // namespace net | 
|  90  |  90  | 
|  91 #endif  // NET_BASE_PROXY_DELEGATE_H_ |  91 #endif  // NET_BASE_PROXY_DELEGATE_H_ | 
| OLD | NEW |