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

Side by Side Diff: webkit/tools/test_shell/test_shell_switches.cc

Issue 6933035: Revert 84284 - Merge gpu_trace_event back into base/debug/trace_event.Initial land attempt at htt... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 7 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 | Annotate | Revision Log
OLDNEW
1 // Copyright (c) 2011 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
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
58 // Use a specified cache directory. 58 // Use a specified cache directory.
59 const char kCacheDir[] = "cache-dir"; 59 const char kCacheDir[] = "cache-dir";
60 60
61 // When being run through a memory profiler, trigger memory in use dumps at 61 // When being run through a memory profiler, trigger memory in use dumps at
62 // startup and just prior to shutdown. 62 // startup and just prior to shutdown.
63 const char kDebugMemoryInUse[] = "debug-memory-in-use"; 63 const char kDebugMemoryInUse[] = "debug-memory-in-use";
64 64
65 // Enable cookies on the file:// scheme. --layout-tests also enables this. 65 // Enable cookies on the file:// scheme. --layout-tests also enables this.
66 const char kEnableFileCookies[] = "enable-file-cookies"; 66 const char kEnableFileCookies[] = "enable-file-cookies";
67 67
68 // Enable tracing events (see base/debug/trace_event.h)
69 const char kEnableTracing[] = "enable-tracing";
70
68 // Allow scripts to close windows in all cases. 71 // Allow scripts to close windows in all cases.
69 const char kAllowScriptsToCloseWindows[] = "allow-scripts-to-close-windows"; 72 const char kAllowScriptsToCloseWindows[] = "allow-scripts-to-close-windows";
70 73
71 // Test the system dependencies (themes, fonts, ...). When this flag is 74 // Test the system dependencies (themes, fonts, ...). When this flag is
72 // specified, the test shell will exit immediately with either 0 (success) or 75 // specified, the test shell will exit immediately with either 0 (success) or
73 // 1 (failure). Combining with other flags has no effect. 76 // 1 (failure). Combining with other flags has no effect.
74 const char kCheckLayoutTestSystemDeps[] = "check-layout-test-sys-deps"; 77 const char kCheckLayoutTestSystemDeps[] = "check-layout-test-sys-deps";
75 78
76 // If set, we are running under GDB so allow a certain class of errors 79 // If set, we are running under GDB so allow a certain class of errors
77 // to happen even if in layout test mode. 80 // to happen even if in layout test mode.
78 const char kGDB[] = "gdb"; 81 const char kGDB[] = "gdb";
79 82
80 // Make functions of the Profiler class available in javascript 83 // Make functions of the Profiler class available in javascript
81 const char kProfiler[] = "profiler"; 84 const char kProfiler[] = "profiler";
82 85
83 // Make functions of the HeapProfiler class available in javascript 86 // Make functions of the HeapProfiler class available in javascript
84 const char kHeapProfiler[] = "heap-profiler"; 87 const char kHeapProfiler[] = "heap-profiler";
85 88
86 const char kAllowExternalPages[] = "allow-external-pages"; 89 const char kAllowExternalPages[] = "allow-external-pages";
87 90
88 const char kEnableAccel2DCanvas[] = "enable-accelerated-2d-canvas"; 91 const char kEnableAccel2DCanvas[] = "enable-accelerated-2d-canvas";
89 92
90 const char kEnableAccelCompositing[] = "enable-accelerated-compositing"; 93 const char kEnableAccelCompositing[] = "enable-accelerated-compositing";
91 94
92 } // namespace test_shell 95 } // namespace test_shell
OLDNEW
« no previous file with comments | « webkit/tools/test_shell/test_shell_switches.h ('k') | webkit/tools/test_shell/test_shell_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698