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 | 7 |
8 #include "base/file_path.h" | 8 #include "base/file_path.h" |
9 #include "base/linked_ptr.h" | 9 #include "base/linked_ptr.h" |
10 #include "net/base/cookie_policy.h" | 10 #include "net/base/cookie_policy.h" |
| 11 #include "chrome/browser/appcache/chrome_appcache_service.h" |
11 #include "chrome/browser/host_content_settings_map.h" | 12 #include "chrome/browser/host_content_settings_map.h" |
12 #include "chrome/browser/host_zoom_map.h" | 13 #include "chrome/browser/host_zoom_map.h" |
13 #include "chrome/browser/io_thread.h" | 14 #include "chrome/browser/io_thread.h" |
14 #include "chrome/browser/pref_service.h" | 15 #include "chrome/browser/pref_service.h" |
15 #include "chrome/browser/privacy_blacklist/blacklist.h" | 16 #include "chrome/browser/privacy_blacklist/blacklist.h" |
16 #include "chrome/browser/net/chrome_cookie_policy.h" | 17 #include "chrome/browser/net/chrome_cookie_policy.h" |
17 #include "chrome/browser/net/url_request_context_getter.h" | 18 #include "chrome/browser/net/url_request_context_getter.h" |
18 #include "chrome/common/appcache/chrome_appcache_service.h" | |
19 #include "chrome/common/extensions/extension.h" | 19 #include "chrome/common/extensions/extension.h" |
20 #include "chrome/common/notification_registrar.h" | 20 #include "chrome/common/notification_registrar.h" |
21 #include "net/url_request/url_request_context.h" | 21 #include "net/url_request/url_request_context.h" |
22 | 22 |
23 class CommandLine; | 23 class CommandLine; |
24 class Profile; | 24 class Profile; |
25 | 25 |
26 namespace net { | 26 namespace net { |
27 class ProxyConfig; | 27 class ProxyConfig; |
28 } | 28 } |
(...skipping 357 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
386 IOThread* const io_thread_; | 386 IOThread* const io_thread_; |
387 | 387 |
388 DISALLOW_COPY_AND_ASSIGN(ChromeURLRequestContextFactory); | 388 DISALLOW_COPY_AND_ASSIGN(ChromeURLRequestContextFactory); |
389 }; | 389 }; |
390 | 390 |
391 // Creates a proxy configuration using the overrides specified on the command | 391 // Creates a proxy configuration using the overrides specified on the command |
392 // line. Returns NULL if the system defaults should be used instead. | 392 // line. Returns NULL if the system defaults should be used instead. |
393 net::ProxyConfig* CreateProxyConfig(const CommandLine& command_line); | 393 net::ProxyConfig* CreateProxyConfig(const CommandLine& command_line); |
394 | 394 |
395 #endif // CHROME_BROWSER_NET_CHROME_URL_REQUEST_CONTEXT_H_ | 395 #endif // CHROME_BROWSER_NET_CHROME_URL_REQUEST_CONTEXT_H_ |
OLD | NEW |