| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 CHROME_BROWSER_NET_CHROME_NETWORK_DELEGATE_H_ | 5 #ifndef CHROME_BROWSER_NET_CHROME_NETWORK_DELEGATE_H_ |
| 6 #define CHROME_BROWSER_NET_CHROME_NETWORK_DELEGATE_H_ | 6 #define CHROME_BROWSER_NET_CHROME_NETWORK_DELEGATE_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include "base/basictypes.h" | 9 #include "base/basictypes.h" |
| 10 #include "net/http/http_network_delegate.h" | 10 #include "net/http/http_network_delegate.h" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 | 21 |
| 22 virtual void OnSendHttpRequest(net::HttpRequestHeaders* headers); | 22 virtual void OnSendHttpRequest(net::HttpRequestHeaders* headers); |
| 23 | 23 |
| 24 // TODO(willchan): Add functions for consumers to register ways to | 24 // TODO(willchan): Add functions for consumers to register ways to |
| 25 // access/modify the request. | 25 // access/modify the request. |
| 26 | 26 |
| 27 private: | 27 private: |
| 28 DISALLOW_COPY_AND_ASSIGN(ChromeNetworkDelegate); | 28 DISALLOW_COPY_AND_ASSIGN(ChromeNetworkDelegate); |
| 29 }; | 29 }; |
| 30 | 30 |
| 31 #endif // CHROME_BROWSER_NET_CHROME_NETWORK_DELEGATE_H_ | 31 #endif // CHROME_BROWSER_NET_CHROME_NETWORK_DELEGATE_H_ |
| OLD | NEW |