| 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 <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "base/compiler_specific.h" | 10 #include "base/compiler_specific.h" |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 const base::FilePath& partition_path) override; | 45 const base::FilePath& partition_path) override; |
| 46 bool IsOffTheRecord() const override; | 46 bool IsOffTheRecord() const override; |
| 47 DownloadManagerDelegate* GetDownloadManagerDelegate() override; | 47 DownloadManagerDelegate* GetDownloadManagerDelegate() override; |
| 48 ResourceContext* GetResourceContext() override; | 48 ResourceContext* GetResourceContext() override; |
| 49 BrowserPluginGuestManager* GetGuestManager() override; | 49 BrowserPluginGuestManager* GetGuestManager() override; |
| 50 storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override; | 50 storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override; |
| 51 PushMessagingService* GetPushMessagingService() override; | 51 PushMessagingService* GetPushMessagingService() override; |
| 52 SSLHostStateDelegate* GetSSLHostStateDelegate() override; | 52 SSLHostStateDelegate* GetSSLHostStateDelegate() override; |
| 53 PermissionManager* GetPermissionManager() override; | 53 PermissionManager* GetPermissionManager() override; |
| 54 BackgroundSyncController* GetBackgroundSyncController() override; | 54 BackgroundSyncController* GetBackgroundSyncController() override; |
| 55 BrowsingDataRemoverDelegate* GetBrowsingDataRemoverDelegate() override; |
| 55 net::URLRequestContextGetter* CreateRequestContext( | 56 net::URLRequestContextGetter* CreateRequestContext( |
| 56 ProtocolHandlerMap* protocol_handlers, | 57 ProtocolHandlerMap* protocol_handlers, |
| 57 URLRequestInterceptorScopedVector request_interceptors) override; | 58 URLRequestInterceptorScopedVector request_interceptors) override; |
| 58 net::URLRequestContextGetter* CreateRequestContextForStoragePartition( | 59 net::URLRequestContextGetter* CreateRequestContextForStoragePartition( |
| 59 const base::FilePath& partition_path, | 60 const base::FilePath& partition_path, |
| 60 bool in_memory, | 61 bool in_memory, |
| 61 ProtocolHandlerMap* protocol_handlers, | 62 ProtocolHandlerMap* protocol_handlers, |
| 62 URLRequestInterceptorScopedVector request_interceptors) override; | 63 URLRequestInterceptorScopedVector request_interceptors) override; |
| 63 net::URLRequestContextGetter* CreateMediaRequestContext() override; | 64 net::URLRequestContextGetter* CreateMediaRequestContext() override; |
| 64 net::URLRequestContextGetter* CreateMediaRequestContextForStoragePartition( | 65 net::URLRequestContextGetter* CreateMediaRequestContextForStoragePartition( |
| (...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 118 base::FilePath path_; | 119 base::FilePath path_; |
| 119 BrowserPluginGuestManager* guest_manager_; | 120 BrowserPluginGuestManager* guest_manager_; |
| 120 scoped_refptr<ShellURLRequestContextGetter> url_request_getter_; | 121 scoped_refptr<ShellURLRequestContextGetter> url_request_getter_; |
| 121 | 122 |
| 122 DISALLOW_COPY_AND_ASSIGN(ShellBrowserContext); | 123 DISALLOW_COPY_AND_ASSIGN(ShellBrowserContext); |
| 123 }; | 124 }; |
| 124 | 125 |
| 125 } // namespace content | 126 } // namespace content |
| 126 | 127 |
| 127 #endif // CONTENT_SHELL_BROWSER_SHELL_BROWSER_CONTEXT_H_ | 128 #endif // CONTENT_SHELL_BROWSER_SHELL_BROWSER_CONTEXT_H_ |
| OLD | NEW |