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

Side by Side Diff: headless/app/headless_shell_switches.cc

Issue 2832963002: Reland of Add --headless flag to Windows (Closed)
Patch Set: Created 3 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/app/headless_shell_switches.h ('k') | headless/lib/browser/DEPS » ('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 2016 The Chromium Authors. All rights reserved. 1 // Copyright 2016 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/app/headless_shell_switches.h" 5 #include "headless/app/headless_shell_switches.h"
6 6
7 namespace headless { 7 namespace headless {
8 namespace switches { 8 namespace switches {
9 9
10 // The background color to be used if the page doesn't specify one. Provided as 10 // The background color to be used if the page doesn't specify one. Provided as
11 // RGBA integer value in hex, e.g. 'ff0000ff' for red or '00000000' for 11 // RGBA integer value in hex, e.g. 'ff0000ff' for red or '00000000' for
12 // transparent. 12 // transparent.
13 const char kDefaultBackgroundColor[] = "default-background-color"; 13 const char kDefaultBackgroundColor[] = "default-background-color";
14 14
15 // Enable chrash reporter for headless.
16 const char kEnableCrashReporter[] = "enable-crash-reporter";
17
15 // The directory breakpad should store minidumps in. 18 // The directory breakpad should store minidumps in.
16 const char kCrashDumpsDir[] = "crash-dumps-dir"; 19 const char kCrashDumpsDir[] = "crash-dumps-dir";
17 20
18 // Instructs headless_shell to cause network fetches to complete in order of 21 // Instructs headless_shell to cause network fetches to complete in order of
19 // creation. This removes a significant source of network related 22 // creation. This removes a significant source of network related
20 // non-determinism at the cost of slower page loads. 23 // non-determinism at the cost of slower page loads.
21 const char kDeterministicFetch[] = "deterministic-fetch"; 24 const char kDeterministicFetch[] = "deterministic-fetch";
22 25
23 // Instructs headless_shell to print document.body.innerHTML to stdout. 26 // Instructs headless_shell to print document.body.innerHTML to stdout.
24 const char kDumpDom[] = "dump-dom"; 27 const char kDumpDom[] = "dump-dom";
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 // network fetches have completed, timers fire and if the system runs out of 69 // network fetches have completed, timers fire and if the system runs out of
67 // virtual time is fastforwarded so the next timer fires immediatley, until the 70 // virtual time is fastforwarded so the next timer fires immediatley, until the
68 // specified virtual time budget is exhausted. 71 // specified virtual time budget is exhausted.
69 const char kVirtualTimeBudget[] = "virtual-time-budget"; 72 const char kVirtualTimeBudget[] = "virtual-time-budget";
70 73
71 // Sets the initial window size. Provided as string in the format "800,600". 74 // Sets the initial window size. Provided as string in the format "800,600".
72 const char kWindowSize[] = "window-size"; 75 const char kWindowSize[] = "window-size";
73 76
74 } // namespace switches 77 } // namespace switches
75 } // namespace headless 78 } // namespace headless
OLDNEW
« no previous file with comments | « headless/app/headless_shell_switches.h ('k') | headless/lib/browser/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698