| OLD | NEW |
| 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 directory breakpad should store minidumps in. |
| 11 const char kCrashDumpsDir[] = "crash-dumps-dir"; |
| 12 |
| 10 // Instructs headless_shell to cause network fetches to complete in order of | 13 // Instructs headless_shell to cause network fetches to complete in order of |
| 11 // creation. This removes a significant source of network related | 14 // creation. This removes a significant source of network related |
| 12 // non-determinism at the cost of slower page loads. | 15 // non-determinism at the cost of slower page loads. |
| 13 const char kDeterministicFetch[] = "deterministic-fetch"; | 16 const char kDeterministicFetch[] = "deterministic-fetch"; |
| 14 | 17 |
| 15 // Instructs headless_shell to print document.body.innerHTML to stdout. | 18 // Instructs headless_shell to print document.body.innerHTML to stdout. |
| 16 const char kDumpDom[] = "dump-dom"; | 19 const char kDumpDom[] = "dump-dom"; |
| 17 | 20 |
| 18 // Hide scrollbars from screenshots. | 21 // Hide scrollbars from screenshots. |
| 19 const char kHideScrollbars[] = "hide-scrollbars"; | 22 const char kHideScrollbars[] = "hide-scrollbars"; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 // network fetches have completed, timers fire and if the system runs out of | 55 // network fetches have completed, timers fire and if the system runs out of |
| 53 // virtual time is fastforwarded so the next timer fires immediatley, until the | 56 // virtual time is fastforwarded so the next timer fires immediatley, until the |
| 54 // specified virtual time budget is exhausted. | 57 // specified virtual time budget is exhausted. |
| 55 const char kVirtualTimeBudget[] = "virtual-time-budget"; | 58 const char kVirtualTimeBudget[] = "virtual-time-budget"; |
| 56 | 59 |
| 57 // Sets the initial window size. Provided as string in the format "800,600". | 60 // Sets the initial window size. Provided as string in the format "800,600". |
| 58 const char kWindowSize[] = "window-size"; | 61 const char kWindowSize[] = "window-size"; |
| 59 | 62 |
| 60 } // namespace switches | 63 } // namespace switches |
| 61 } // namespace headless | 64 } // namespace headless |
| OLD | NEW |