OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 CONTENT_SHELL_BROWSER_SHELL_BROWSER_CONTEXT_H_ | 5 #ifndef CONTENT_SHELL_BROWSER_SHELL_BROWSER_CONTEXT_H_ |
6 #define CONTENT_SHELL_BROWSER_SHELL_BROWSER_CONTEXT_H_ | 6 #define CONTENT_SHELL_BROWSER_SHELL_BROWSER_CONTEXT_H_ |
7 | 7 |
8 #include "base/compiler_specific.h" | 8 #include "base/compiler_specific.h" |
9 #include "base/files/file_path.h" | 9 #include "base/files/file_path.h" |
10 #include "base/memory/ref_counted.h" | 10 #include "base/memory/ref_counted.h" |
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
45 virtual net::URLRequestContextGetter* GetMediaRequestContextForRenderProcess( | 45 virtual net::URLRequestContextGetter* GetMediaRequestContextForRenderProcess( |
46 int renderer_child_id) OVERRIDE; | 46 int renderer_child_id) OVERRIDE; |
47 virtual net::URLRequestContextGetter* | 47 virtual net::URLRequestContextGetter* |
48 GetMediaRequestContextForStoragePartition( | 48 GetMediaRequestContextForStoragePartition( |
49 const base::FilePath& partition_path, | 49 const base::FilePath& partition_path, |
50 bool in_memory) OVERRIDE; | 50 bool in_memory) OVERRIDE; |
51 virtual ResourceContext* GetResourceContext() OVERRIDE; | 51 virtual ResourceContext* GetResourceContext() OVERRIDE; |
52 virtual BrowserPluginGuestManager* GetGuestManager() OVERRIDE; | 52 virtual BrowserPluginGuestManager* GetGuestManager() OVERRIDE; |
53 virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE; | 53 virtual quota::SpecialStoragePolicy* GetSpecialStoragePolicy() OVERRIDE; |
54 virtual PushMessagingService* GetPushMessagingService() OVERRIDE; | 54 virtual PushMessagingService* GetPushMessagingService() OVERRIDE; |
| 55 virtual SSLHostStateDelegate* GetSSLHostStateDelegate() OVERRIDE; |
55 | 56 |
56 net::URLRequestContextGetter* CreateRequestContext( | 57 net::URLRequestContextGetter* CreateRequestContext( |
57 ProtocolHandlerMap* protocol_handlers, | 58 ProtocolHandlerMap* protocol_handlers, |
58 URLRequestInterceptorScopedVector request_interceptors); | 59 URLRequestInterceptorScopedVector request_interceptors); |
59 net::URLRequestContextGetter* CreateRequestContextForStoragePartition( | 60 net::URLRequestContextGetter* CreateRequestContextForStoragePartition( |
60 const base::FilePath& partition_path, | 61 const base::FilePath& partition_path, |
61 bool in_memory, | 62 bool in_memory, |
62 ProtocolHandlerMap* protocol_handlers, | 63 ProtocolHandlerMap* protocol_handlers, |
63 URLRequestInterceptorScopedVector request_interceptors); | 64 URLRequestInterceptorScopedVector request_interceptors); |
64 | 65 |
(...skipping 12 matching lines...) Expand all Loading... |
77 scoped_ptr<ShellResourceContext> resource_context_; | 78 scoped_ptr<ShellResourceContext> resource_context_; |
78 scoped_ptr<ShellDownloadManagerDelegate> download_manager_delegate_; | 79 scoped_ptr<ShellDownloadManagerDelegate> download_manager_delegate_; |
79 scoped_refptr<ShellURLRequestContextGetter> url_request_getter_; | 80 scoped_refptr<ShellURLRequestContextGetter> url_request_getter_; |
80 | 81 |
81 DISALLOW_COPY_AND_ASSIGN(ShellBrowserContext); | 82 DISALLOW_COPY_AND_ASSIGN(ShellBrowserContext); |
82 }; | 83 }; |
83 | 84 |
84 } // namespace content | 85 } // namespace content |
85 | 86 |
86 #endif // CONTENT_SHELL_BROWSER_SHELL_BROWSER_CONTEXT_H_ | 87 #endif // CONTENT_SHELL_BROWSER_SHELL_BROWSER_CONTEXT_H_ |
OLD | NEW |