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

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: Cleanup 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;
24 26
25 // BrowserContext implementation: 27 // BrowserContext implementation:
26 std::unique_ptr<content::ZoomLevelDelegate> CreateZoomLevelDelegate( 28 std::unique_ptr<content::ZoomLevelDelegate> CreateZoomLevelDelegate(
27 const base::FilePath& partition_path) override; 29 const base::FilePath& partition_path) override;
28 base::FilePath GetPath() const override; 30 base::FilePath GetPath() const override;
29 bool IsOffTheRecord() const override; 31 bool IsOffTheRecord() const override;
30 content::ResourceContext* GetResourceContext() override; 32 content::ResourceContext* GetResourceContext() override;
31 content::DownloadManagerDelegate* GetDownloadManagerDelegate() override; 33 content::DownloadManagerDelegate* GetDownloadManagerDelegate() override;
32 content::BrowserPluginGuestManager* GetGuestManager() override; 34 content::BrowserPluginGuestManager* GetGuestManager() override;
33 storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override; 35 storage::SpecialStoragePolicy* GetSpecialStoragePolicy() override;
(...skipping 11 matching lines...) Expand all
45 content::URLRequestInterceptorScopedVector request_interceptors) override; 47 content::URLRequestInterceptorScopedVector request_interceptors) override;
46 net::URLRequestContextGetter* CreateMediaRequestContext() override; 48 net::URLRequestContextGetter* CreateMediaRequestContext() override;
47 net::URLRequestContextGetter* CreateMediaRequestContextForStoragePartition( 49 net::URLRequestContextGetter* CreateMediaRequestContextForStoragePartition(
48 const base::FilePath& partition_path, 50 const base::FilePath& partition_path,
49 bool in_memory) override; 51 bool in_memory) override;
50 52
51 HeadlessBrowser::Options* options() const { return options_; } 53 HeadlessBrowser::Options* options() const { return options_; }
52 void SetOptionsForTesting(HeadlessBrowser::Options* options); 54 void SetOptionsForTesting(HeadlessBrowser::Options* options);
53 55
54 private: 56 private:
55 // Performs initialization of the HeadlessBrowserContext while IO is still 57 // Performs initialization of the HeadlessBrowserContextImpl while IO is still
56 // allowed on the current thread. 58 // allowed on the current thread.
57 void InitWhileIOAllowed(); 59 void InitWhileIOAllowed();
58 60
59 base::FilePath path_; 61 base::FilePath path_;
60 std::unique_ptr<HeadlessResourceContext> resource_context_; 62 std::unique_ptr<HeadlessResourceContext> resource_context_;
61 HeadlessBrowser::Options* options_; // Not owned. 63 HeadlessBrowser::Options* options_; // Not owned.
62 64
63 DISALLOW_COPY_AND_ASSIGN(HeadlessBrowserContext); 65 DISALLOW_COPY_AND_ASSIGN(HeadlessBrowserContextImpl);
64 }; 66 };
65 67
66 } // namespace headless 68 } // namespace headless
67 69
68 #endif // HEADLESS_LIB_BROWSER_HEADLESS_BROWSER_CONTEXT_H_ 70 #endif // HEADLESS_LIB_BROWSER_HEADLESS_BROWSER_CONTEXT_IMPL_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698