| OLD | NEW |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. | 1 // Copyright 2014 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 CHROMECAST_BROWSER_CAST_BROWSER_CONTEXT_H_ | 5 #ifndef CHROMECAST_BROWSER_CAST_BROWSER_CONTEXT_H_ |
| 6 #define CHROMECAST_BROWSER_CAST_BROWSER_CONTEXT_H_ | 6 #define CHROMECAST_BROWSER_CAST_BROWSER_CONTEXT_H_ |
| 7 | 7 |
| 8 #include "base/files/file_path.h" | 8 #include "base/files/file_path.h" |
| 9 #include "base/macros.h" | 9 #include "base/macros.h" |
| 10 #include "content/public/browser/browser_context.h" | 10 #include "content/public/browser/browser_context.h" |
| (...skipping 12 matching lines...) Expand all Loading... |
| 23 public: | 23 public: |
| 24 explicit CastBrowserContext( | 24 explicit CastBrowserContext( |
| 25 URLRequestContextFactory* url_request_context_factory); | 25 URLRequestContextFactory* url_request_context_factory); |
| 26 ~CastBrowserContext() override; | 26 ~CastBrowserContext() override; |
| 27 | 27 |
| 28 // BrowserContext implementation: | 28 // BrowserContext implementation: |
| 29 std::unique_ptr<content::ZoomLevelDelegate> CreateZoomLevelDelegate( | 29 std::unique_ptr<content::ZoomLevelDelegate> CreateZoomLevelDelegate( |
| 30 const base::FilePath& partition_path) override; | 30 const base::FilePath& partition_path) override; |
| 31 base::FilePath GetPath() const override; | 31 base::FilePath GetPath() const override; |
| 32 bool IsOffTheRecord() const override; | 32 bool IsOffTheRecord() const override; |
| 33 net::URLRequestContextGetter* GetRequestContext() override; | |
| 34 net::URLRequestContextGetter* GetMediaRequestContext() override; | 33 net::URLRequestContextGetter* GetMediaRequestContext() override; |
| 35 net::URLRequestContextGetter* GetMediaRequestContextForRenderProcess( | 34 net::URLRequestContextGetter* GetMediaRequestContextForRenderProcess( |
| 36 int renderer_child_id) override; | 35 int renderer_child_id) override; |
| 37 net::URLRequestContextGetter* GetMediaRequestContextForStoragePartition( | 36 net::URLRequestContextGetter* GetMediaRequestContextForStoragePartition( |
| 38 const base::FilePath& partition_path, | 37 const base::FilePath& partition_path, |
| 39 bool in_memory) override; | 38 bool in_memory) override; |
| 40 content::ResourceContext* GetResourceContext() override; | 39 content::ResourceContext* GetResourceContext() override; |
| 41 content::DownloadManagerDelegate* GetDownloadManagerDelegate() override; | 40 content::DownloadManagerDelegate* GetDownloadManagerDelegate() override; |
| 42 content::BrowserPluginGuestManager* GetGuestManager() override; | 41 content::BrowserPluginGuestManager* GetGuestManager() override; |
| 43 storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override; | 42 storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override; |
| (...skipping 25 matching lines...) Expand all Loading... |
| 69 std::unique_ptr<CastDownloadManagerDelegate> download_manager_delegate_; | 68 std::unique_ptr<CastDownloadManagerDelegate> download_manager_delegate_; |
| 70 std::unique_ptr<content::PermissionManager> permission_manager_; | 69 std::unique_ptr<content::PermissionManager> permission_manager_; |
| 71 | 70 |
| 72 DISALLOW_COPY_AND_ASSIGN(CastBrowserContext); | 71 DISALLOW_COPY_AND_ASSIGN(CastBrowserContext); |
| 73 }; | 72 }; |
| 74 | 73 |
| 75 } // namespace shell | 74 } // namespace shell |
| 76 } // namespace chromecast | 75 } // namespace chromecast |
| 77 | 76 |
| 78 #endif // CHROMECAST_BROWSER_CAST_BROWSER_CONTEXT_H_ | 77 #endif // CHROMECAST_BROWSER_CAST_BROWSER_CONTEXT_H_ |
| OLD | NEW |