OLD | NEW |
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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"; |
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
78 | 78 |
79 // Make functions of the HeapProfiler class available in javascript | 79 // Make functions of the HeapProfiler class available in javascript |
80 const char kHeapProfiler[] = "heap-profiler"; | 80 const char kHeapProfiler[] = "heap-profiler"; |
81 | 81 |
82 const char kAllowExternalPages[] = "allow-external-pages"; | 82 const char kAllowExternalPages[] = "allow-external-pages"; |
83 | 83 |
84 const char kEnableAccel2DCanvas[] = "enable-accelerated-2d-canvas"; | 84 const char kEnableAccel2DCanvas[] = "enable-accelerated-2d-canvas"; |
85 | 85 |
86 const char kEnableAccelCompositing[] = "enable-accelerated-compositing"; | 86 const char kEnableAccelCompositing[] = "enable-accelerated-compositing"; |
87 | 87 |
88 // Options to pass to the Dart VM. | |
89 const char kDartFlags[] = "dart-flags"; | |
90 | |
91 } // namespace test_shell | 88 } // namespace test_shell |
OLD | NEW |