| 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_URL_REQUEST_CONTEXT_H_ | 5 #ifndef CHROME_BROWSER_NET_CHROME_URL_REQUEST_CONTEXT_H_ |
| 6 #define CHROME_BROWSER_NET_CHROME_URL_REQUEST_CONTEXT_H_ | 6 #define CHROME_BROWSER_NET_CHROME_URL_REQUEST_CONTEXT_H_ |
| 7 #pragma once | 7 #pragma once |
| 8 | 8 |
| 9 #include <string> | 9 #include <string> |
| 10 #include <vector> | 10 #include <vector> |
| (...skipping 17 matching lines...) Expand all Loading... |
| 28 #include "net/url_request/url_request_context.h" | 28 #include "net/url_request/url_request_context.h" |
| 29 #include "webkit/database/database_tracker.h" | 29 #include "webkit/database/database_tracker.h" |
| 30 | 30 |
| 31 class CommandLine; | 31 class CommandLine; |
| 32 class PrefService; | 32 class PrefService; |
| 33 class Profile; | 33 class Profile; |
| 34 | 34 |
| 35 namespace net { | 35 namespace net { |
| 36 class DnsCertProvenanceChecker; | 36 class DnsCertProvenanceChecker; |
| 37 class NetworkDelegate; | 37 class NetworkDelegate; |
| 38 class ProxyConfig; | |
| 39 } | 38 } |
| 40 | 39 |
| 41 class ChromeURLRequestContext; | 40 class ChromeURLRequestContext; |
| 42 class ChromeURLRequestContextFactory; | 41 class ChromeURLRequestContextFactory; |
| 43 | 42 |
| 44 // Subclass of URLRequestContext which can be used to store extra information | 43 // Subclass of URLRequestContext which can be used to store extra information |
| 45 // for requests. | 44 // for requests. |
| 46 // | 45 // |
| 47 // All methods of this class must be called from the IO thread, | 46 // All methods of this class must be called from the IO thread, |
| 48 // including the constructor and destructor. | 47 // including the constructor and destructor. |
| (...skipping 333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 382 | 381 |
| 383 FilePath profile_dir_path_; | 382 FilePath profile_dir_path_; |
| 384 | 383 |
| 385 private: | 384 private: |
| 386 IOThread* const io_thread_; | 385 IOThread* const io_thread_; |
| 387 | 386 |
| 388 DISALLOW_COPY_AND_ASSIGN(ChromeURLRequestContextFactory); | 387 DISALLOW_COPY_AND_ASSIGN(ChromeURLRequestContextFactory); |
| 389 }; | 388 }; |
| 390 | 389 |
| 391 #endif // CHROME_BROWSER_NET_CHROME_URL_REQUEST_CONTEXT_H_ | 390 #endif // CHROME_BROWSER_NET_CHROME_URL_REQUEST_CONTEXT_H_ |
| OLD | NEW |