| OLD | NEW |
| (Empty) |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 #ifndef HEADLESS_LIB_BROWSER_HEADLESS_BROWSER_CONTEXT_H_ | |
| 6 #define HEADLESS_LIB_BROWSER_HEADLESS_BROWSER_CONTEXT_H_ | |
| 7 | |
| 8 #include <memory> | |
| 9 | |
| 10 #include "base/files/file_path.h" | |
| 11 #include "content/public/browser/browser_context.h" | |
| 12 #include "content/public/browser/content_browser_client.h" | |
| 13 #include "content/public/browser/resource_context.h" | |
| 14 #include "headless/lib/browser/headless_url_request_context_getter.h" | |
| 15 #include "headless/public/headless_browser.h" | |
| 16 | |
| 17 namespace headless { | |
| 18 class HeadlessResourceContext; | |
| 19 | |
| 20 class HeadlessBrowserContext : public content::BrowserContext { | |
| 21 public: | |
| 22 explicit HeadlessBrowserContext(HeadlessBrowser::Options* options); | |
| 23 ~HeadlessBrowserContext() override; | |
| 24 | |
| 25 // BrowserContext implementation: | |
| 26 std::unique_ptr<content::ZoomLevelDelegate> CreateZoomLevelDelegate( | |
| 27 const base::FilePath& partition_path) override; | |
| 28 base::FilePath GetPath() const override; | |
| 29 bool IsOffTheRecord() const override; | |
| 30 content::ResourceContext* GetResourceContext() override; | |
| 31 content::DownloadManagerDelegate* GetDownloadManagerDelegate() override; | |
| 32 content::BrowserPluginGuestManager* GetGuestManager() override; | |
| 33 storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override; | |
| 34 content::PushMessagingService* GetPushMessagingService() override; | |
| 35 content::SSLHostStateDelegate* GetSSLHostStateDelegate() override; | |
| 36 content::PermissionManager* GetPermissionManager() override; | |
| 37 content::BackgroundSyncController* GetBackgroundSyncController() override; | |
| 38 net::URLRequestContextGetter* CreateRequestContext( | |
| 39 content::ProtocolHandlerMap* protocol_handlers, | |
| 40 content::URLRequestInterceptorScopedVector request_interceptors) override; | |
| 41 net::URLRequestContextGetter* CreateRequestContextForStoragePartition( | |
| 42 const base::FilePath& partition_path, | |
| 43 bool in_memory, | |
| 44 content::ProtocolHandlerMap* protocol_handlers, | |
| 45 content::URLRequestInterceptorScopedVector request_interceptors) override; | |
| 46 net::URLRequestContextGetter* CreateMediaRequestContext() override; | |
| 47 net::URLRequestContextGetter* CreateMediaRequestContextForStoragePartition( | |
| 48 const base::FilePath& partition_path, | |
| 49 bool in_memory) override; | |
| 50 | |
| 51 HeadlessBrowser::Options* options() const { return options_; } | |
| 52 void SetOptionsForTesting(HeadlessBrowser::Options* options); | |
| 53 | |
| 54 private: | |
| 55 // Performs initialization of the HeadlessBrowserContext while IO is still | |
| 56 // allowed on the current thread. | |
| 57 void InitWhileIOAllowed(); | |
| 58 | |
| 59 base::FilePath path_; | |
| 60 std::unique_ptr<HeadlessResourceContext> resource_context_; | |
| 61 HeadlessBrowser::Options* options_; // Not owned. | |
| 62 | |
| 63 DISALLOW_COPY_AND_ASSIGN(HeadlessBrowserContext); | |
| 64 }; | |
| 65 | |
| 66 } // namespace headless | |
| 67 | |
| 68 #endif // HEADLESS_LIB_BROWSER_HEADLESS_BROWSER_CONTEXT_H_ | |
| OLD | NEW |