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

Side by Side Diff: headless/lib/browser/headless_browser_impl.cc

Issue 1991953002: Implement a runtime headless mode for Linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years 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
« no previous file with comments | « headless/README.md ('k') | headless/lib/browser/headless_platform_event_source.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 #include "headless/lib/browser/headless_browser_impl.h" 5 #include "headless/lib/browser/headless_browser_impl.h"
6 6
7 #include <string> 7 #include <string>
8 #include <utility> 8 #include <utility>
9 #include <vector> 9 #include <vector>
10 10
11 #include "base/command_line.h" 11 #include "base/command_line.h"
12 #include "base/memory/ptr_util.h" 12 #include "base/memory/ptr_util.h"
13 #include "base/threading/thread_task_runner_handle.h" 13 #include "base/threading/thread_task_runner_handle.h"
14 #include "content/public/app/content_main.h" 14 #include "content/public/app/content_main.h"
15 #include "content/public/browser/browser_thread.h" 15 #include "content/public/browser/browser_thread.h"
16 #include "content/public/browser/web_contents.h" 16 #include "content/public/browser/web_contents.h"
17 #include "content/public/common/content_switches.h" 17 #include "content/public/common/content_switches.h"
18 #include "headless/lib/browser/headless_browser_context_impl.h" 18 #include "headless/lib/browser/headless_browser_context_impl.h"
19 #include "headless/lib/browser/headless_browser_main_parts.h" 19 #include "headless/lib/browser/headless_browser_main_parts.h"
20 #include "headless/lib/browser/headless_web_contents_impl.h" 20 #include "headless/lib/browser/headless_web_contents_impl.h"
21 #include "headless/lib/browser/headless_window_parenting_client.h" 21 #include "headless/lib/browser/headless_window_parenting_client.h"
22 #include "headless/lib/browser/headless_window_tree_host.h"
22 #include "headless/lib/headless_content_main_delegate.h" 23 #include "headless/lib/headless_content_main_delegate.h"
23 #include "ui/aura/env.h" 24 #include "ui/aura/env.h"
24 #include "ui/aura/window_tree_host.h" 25 #include "ui/events/devices/device_data_manager.h"
25 #include "ui/gfx/geometry/size.h" 26 #include "ui/gfx/geometry/size.h"
26 27
27 namespace headless { 28 namespace headless {
28 namespace { 29 namespace {
29 30
30 int RunContentMain( 31 int RunContentMain(
31 HeadlessBrowser::Options options, 32 HeadlessBrowser::Options options,
32 const base::Callback<void(HeadlessBrowser*)>& on_browser_start_callback) { 33 const base::Callback<void(HeadlessBrowser*)>& on_browser_start_callback) {
33 content::ContentMainParams params(nullptr); 34 content::ContentMainParams params(nullptr);
34 params.argc = options.argc; 35 params.argc = options.argc;
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
112 } 113 }
113 114
114 void HeadlessBrowserImpl::set_browser_main_parts( 115 void HeadlessBrowserImpl::set_browser_main_parts(
115 HeadlessBrowserMainParts* browser_main_parts) { 116 HeadlessBrowserMainParts* browser_main_parts) {
116 DCHECK(!browser_main_parts_); 117 DCHECK(!browser_main_parts_);
117 browser_main_parts_ = browser_main_parts; 118 browser_main_parts_ = browser_main_parts;
118 } 119 }
119 120
120 void HeadlessBrowserImpl::RunOnStartCallback() { 121 void HeadlessBrowserImpl::RunOnStartCallback() {
121 DCHECK(aura::Env::GetInstance()); 122 DCHECK(aura::Env::GetInstance());
123 ui::DeviceDataManager::CreateInstance();
124
122 window_tree_host_.reset( 125 window_tree_host_.reset(
123 aura::WindowTreeHost::Create(gfx::Rect(options()->window_size))); 126 new HeadlessWindowTreeHost(gfx::Rect(options()->window_size)));
124 window_tree_host_->InitHost(); 127 window_tree_host_->InitHost();
125 128
126 window_parenting_client_.reset( 129 window_parenting_client_.reset(
127 new HeadlessWindowParentingClient(window_tree_host_->window())); 130 new HeadlessWindowParentingClient(window_tree_host_->window()));
128 131
129 on_start_callback_.Run(this); 132 on_start_callback_.Run(this);
130 on_start_callback_ = base::Callback<void(HeadlessBrowser*)>(); 133 on_start_callback_ = base::Callback<void(HeadlessBrowser*)>();
131 } 134 }
132 135
133 HeadlessBrowserContext* HeadlessBrowserImpl::CreateBrowserContext( 136 HeadlessBrowserContext* HeadlessBrowserImpl::CreateBrowserContext(
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 208
206 // Child processes should not end up here. 209 // Child processes should not end up here.
207 base::CommandLine command_line(options.argc, options.argv); 210 base::CommandLine command_line(options.argc, options.argv);
208 DCHECK(!command_line.HasSwitch(switches::kProcessType)); 211 DCHECK(!command_line.HasSwitch(switches::kProcessType));
209 #endif 212 #endif
210 return RunContentMain(std::move(options), 213 return RunContentMain(std::move(options),
211 std::move(on_browser_start_callback)); 214 std::move(on_browser_start_callback));
212 } 215 }
213 216
214 } // namespace headless 217 } // namespace headless
OLDNEW
« no previous file with comments | « headless/README.md ('k') | headless/lib/browser/headless_platform_event_source.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698