| OLD | NEW |
| 1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2006-2008 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 "webkit/tools/test_shell/test_shell_switches.h" | 5 #include "webkit/tools/test_shell/test_shell_switches.h" |
| 6 | 6 |
| 7 namespace test_shell { | 7 namespace test_shell { |
| 8 | 8 |
| 9 // Suppresses all error dialogs when present. | 9 // Suppresses all error dialogs when present. |
| 10 const char kNoErrorDialogs[] = "noerrdialogs"; | 10 const char kNoErrorDialogs[] = "noerrdialogs"; |
| 11 | 11 |
| 12 // Causes the test_shell to run using stdin and stdout for URLs and output, | 12 // Causes the test_shell to run using stdin and stdout for URLs and output, |
| 13 // respectively, and interferes with interactive use of the UI. | 13 // respectively, and interferes with interactive use of the UI. |
| 14 const char kLayoutTests[] = "layout-tests"; | 14 const char kLayoutTests[] = "layout-tests"; |
| 15 const char kCrashDumps[] = "crash-dumps"; // Enable crash dumps | 15 const char kCrashDumps[] = "crash-dumps"; // Enable crash dumps |
| 16 // Dumps the full-heap instead of only stack. Used with kCrashDumps. |
| 17 const char kCrashDumpsFulldump[] = "crash-dumps-fulldump"; |
| 16 | 18 |
| 17 // Causes the test_shell to run with a generic theme (part of layout_tests). | 19 // Causes the test_shell to run with a generic theme (part of layout_tests). |
| 18 const char kGenericTheme[] = "generic-theme"; | 20 const char kGenericTheme[] = "generic-theme"; |
| 19 | 21 |
| 20 // This causes the test_shell to run with the classic theme. | 22 // This causes the test_shell to run with the classic theme. |
| 21 // Passing --layout-tests enables this by default. | 23 // Passing --layout-tests enables this by default. |
| 22 const char kClassicTheme[] = "classic-theme"; | 24 const char kClassicTheme[] = "classic-theme"; |
| 23 | 25 |
| 24 // This causes the test_shell to run with the new windows theming engine | 26 // This causes the test_shell to run with the new windows theming engine |
| 25 // enabled. This is the default unless --layout-tests is specified. | 27 // enabled. This is the default unless --layout-tests is specified. |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 90 // Make functions of the HeapProfiler class available in javascript | 92 // Make functions of the HeapProfiler class available in javascript |
| 91 const char kHeapProfiler[] = "heap-profiler"; | 93 const char kHeapProfiler[] = "heap-profiler"; |
| 92 | 94 |
| 93 const char kAllowExternalPages[] = "allow-external-pages"; | 95 const char kAllowExternalPages[] = "allow-external-pages"; |
| 94 | 96 |
| 95 const char kEnableAccel2DCanvas[] = "enable-accelerated-2d-canvas"; | 97 const char kEnableAccel2DCanvas[] = "enable-accelerated-2d-canvas"; |
| 96 | 98 |
| 97 const char kEnableAccelCompositing[] = "enable-accelerated-compositing"; | 99 const char kEnableAccelCompositing[] = "enable-accelerated-compositing"; |
| 98 | 100 |
| 99 } // namespace test_shell | 101 } // namespace test_shell |
| OLD | NEW |