Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(56)

Side by Side Diff: headless/lib/browser/headless_browser_context_impl.h

Issue 2043603004: headless: Introduce a browser context (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address nits Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 // Copyright 2015 The Chromium Authors. All rights reserved. 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 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 HEADLESS_LIB_BROWSER_HEADLESS_BROWSER_CONTEXT_H_ 5 #ifndef HEADLESS_LIB_BROWSER_HEADLESS_BROWSER_CONTEXT_IMPL_H_
6 #define HEADLESS_LIB_BROWSER_HEADLESS_BROWSER_CONTEXT_H_ 6 #define HEADLESS_LIB_BROWSER_HEADLESS_BROWSER_CONTEXT_IMPL_H_
7 7
8 #include <memory> 8 #include <memory>
9 9
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
11 #include "content/public/browser/browser_context.h" 11 #include "content/public/browser/browser_context.h"
12 #include "content/public/browser/content_browser_client.h" 12 #include "content/public/browser/content_browser_client.h"
13 #include "content/public/browser/resource_context.h" 13 #include "content/public/browser/resource_context.h"
14 #include "headless/lib/browser/headless_url_request_context_getter.h" 14 #include "headless/lib/browser/headless_url_request_context_getter.h"
15 #include "headless/public/headless_browser.h" 15 #include "headless/public/headless_browser.h"
16 #include "headless/public/headless_browser_context.h"
16 17
17 namespace headless { 18 namespace headless {
18 class HeadlessResourceContext; 19 class HeadlessResourceContext;
19 20
20 class HeadlessBrowserContext : public content::BrowserContext { 21 class HeadlessBrowserContextImpl : public HeadlessBrowserContext,
22 public content::BrowserContext {
21 public: 23 public:
22 explicit HeadlessBrowserContext(HeadlessBrowser::Options* options); 24 explicit HeadlessBrowserContextImpl(HeadlessBrowser::Options* options);
23 ~HeadlessBrowserContext() override; 25 ~HeadlessBrowserContextImpl() override;
26
27 static HeadlessBrowserContextImpl* From(
28 HeadlessBrowserContext* browser_context);
24 29
25 // BrowserContext implementation: 30 // BrowserContext implementation:
26 std::unique_ptr<content::ZoomLevelDelegate> CreateZoomLevelDelegate( 31 std::unique_ptr<content::ZoomLevelDelegate> CreateZoomLevelDelegate(
27 const base::FilePath& partition_path) override; 32 const base::FilePath& partition_path) override;
28 base::FilePath GetPath() const override; 33 base::FilePath GetPath() const override;
29 bool IsOffTheRecord() const override; 34 bool IsOffTheRecord() const override;
30 content::ResourceContext* GetResourceContext() override; 35 content::ResourceContext* GetResourceContext() override;
31 content::DownloadManagerDelegate* GetDownloadManagerDelegate() override; 36 content::DownloadManagerDelegate* GetDownloadManagerDelegate() override;
32 content::BrowserPluginGuestManager* GetGuestManager() override; 37 content::BrowserPluginGuestManager* GetGuestManager() override;
33 storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override; 38 storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override;
(...skipping 11 matching lines...) Expand all
45 content::URLRequestInterceptorScopedVector request_interceptors) override; 50 content::URLRequestInterceptorScopedVector request_interceptors) override;
46 net::URLRequestContextGetter* CreateMediaRequestContext() override; 51 net::URLRequestContextGetter* CreateMediaRequestContext() override;
47 net::URLRequestContextGetter* CreateMediaRequestContextForStoragePartition( 52 net::URLRequestContextGetter* CreateMediaRequestContextForStoragePartition(
48 const base::FilePath& partition_path, 53 const base::FilePath& partition_path,
49 bool in_memory) override; 54 bool in_memory) override;
50 55
51 HeadlessBrowser::Options* options() const { return options_; } 56 HeadlessBrowser::Options* options() const { return options_; }
52 void SetOptionsForTesting(HeadlessBrowser::Options* options); 57 void SetOptionsForTesting(HeadlessBrowser::Options* options);
53 58
54 private: 59 private:
55 // Performs initialization of the HeadlessBrowserContext while IO is still 60 // Performs initialization of the HeadlessBrowserContextImpl while IO is still
56 // allowed on the current thread. 61 // allowed on the current thread.
57 void InitWhileIOAllowed(); 62 void InitWhileIOAllowed();
58 63
59 base::FilePath path_; 64 base::FilePath path_;
60 std::unique_ptr<HeadlessResourceContext> resource_context_; 65 std::unique_ptr<HeadlessResourceContext> resource_context_;
61 HeadlessBrowser::Options* options_; // Not owned. 66 HeadlessBrowser::Options* options_; // Not owned.
62 67
63 DISALLOW_COPY_AND_ASSIGN(HeadlessBrowserContext); 68 DISALLOW_COPY_AND_ASSIGN(HeadlessBrowserContextImpl);
64 }; 69 };
65 70
66 } // namespace headless 71 } // namespace headless
67 72
68 #endif // HEADLESS_LIB_BROWSER_HEADLESS_BROWSER_CONTEXT_H_ 73 #endif // HEADLESS_LIB_BROWSER_HEADLESS_BROWSER_CONTEXT_IMPL_H_
OLDNEW
« no previous file with comments | « headless/lib/browser/headless_browser_context.cc ('k') | headless/lib/browser/headless_browser_context_impl.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698