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

Side by Side Diff: headless/public/headless_browser.cc

Issue 1908983002: headless: Switch to multiprocess mode by default (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebased Created 4 years, 8 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
« no previous file with comments | « headless/public/headless_browser.h ('k') | no next file » | 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 "content/public/common/user_agent.h" 5 #include "content/public/common/user_agent.h"
6 #include "headless/public/headless_browser.h" 6 #include "headless/public/headless_browser.h"
7 #include "net/url_request/url_request_context_getter.h" 7 #include "net/url_request/url_request_context_getter.h"
8 8
9 using Options = headless::HeadlessBrowser::Options; 9 using Options = headless::HeadlessBrowser::Options;
10 using Builder = headless::HeadlessBrowser::Options::Builder; 10 using Builder = headless::HeadlessBrowser::Options::Builder;
11 11
12 namespace headless { 12 namespace headless {
13 13
14 // Product name for building the default user agent string. 14 // Product name for building the default user agent string.
15 namespace { 15 namespace {
16 const char kProductName[] = "HeadlessChrome"; 16 const char kProductName[] = "HeadlessChrome";
17 } 17 }
18 18
19 Options::Options(int argc, const char** argv) 19 Options::Options(int argc, const char** argv)
20 : argc(argc), 20 : argc(argc),
21 argv(argv), 21 argv(argv),
22 user_agent(content::BuildUserAgentFromProduct(kProductName)), 22 user_agent(content::BuildUserAgentFromProduct(kProductName)),
23 message_pump(nullptr) {} 23 message_pump(nullptr),
24 single_process_mode(false) {}
24 25
25 Options::Options(const Options& other) = default; 26 Options::Options(const Options& other) = default;
26 27
27 Options::~Options() {} 28 Options::~Options() {}
28 29
29 Builder::Builder(int argc, const char** argv) : options_(argc, argv) {} 30 Builder::Builder(int argc, const char** argv) : options_(argc, argv) {}
30 31
31 Builder::Builder() : options_(0, nullptr) {} 32 Builder::Builder() : options_(0, nullptr) {}
32 33
33 Builder::~Builder() {} 34 Builder::~Builder() {}
(...skipping 16 matching lines...) Expand all
50 Builder& Builder::SetProxyServer(const net::HostPortPair& proxy_server) { 51 Builder& Builder::SetProxyServer(const net::HostPortPair& proxy_server) {
51 options_.proxy_server = proxy_server; 52 options_.proxy_server = proxy_server;
52 return *this; 53 return *this;
53 } 54 }
54 55
55 Builder& Builder::SetHostResolverRules(const std::string& host_resolver_rules) { 56 Builder& Builder::SetHostResolverRules(const std::string& host_resolver_rules) {
56 options_.host_resolver_rules = host_resolver_rules; 57 options_.host_resolver_rules = host_resolver_rules;
57 return *this; 58 return *this;
58 } 59 }
59 60
61 Builder& Builder::SetSingleProcessMode(bool single_process_mode) {
62 options_.single_process_mode = single_process_mode;
63 return *this;
64 }
65
60 Options Builder::Build() { 66 Options Builder::Build() {
61 return options_; 67 return options_;
62 } 68 }
63 69
64 } // namespace headless 70 } // namespace headless
OLDNEW
« no previous file with comments | « headless/public/headless_browser.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698