| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "build/build_config.h" | 5 #include "build/build_config.h" |
| 6 #include "content/public/common/content_switches.h" | 6 #include "content/public/common/content_switches.h" |
| 7 | 7 |
| 8 namespace switches { | 8 namespace switches { |
| 9 | 9 |
| 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to | 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 const char kAllowNoSandboxJob[] = "allow-no-sandbox-job"; | 43 const char kAllowNoSandboxJob[] = "allow-no-sandbox-job"; |
| 44 | 44 |
| 45 // Allows debugging of sandboxed processes (see zygote_main_linux.cc). | 45 // Allows debugging of sandboxed processes (see zygote_main_linux.cc). |
| 46 const char kAllowSandboxDebugging[] = "allow-sandbox-debugging"; | 46 const char kAllowSandboxDebugging[] = "allow-sandbox-debugging"; |
| 47 | 47 |
| 48 // Uses the android SkFontManager on linux. The specified directory should | 48 // Uses the android SkFontManager on linux. The specified directory should |
| 49 // include the configuration xml file with the name "fonts.xml". | 49 // include the configuration xml file with the name "fonts.xml". |
| 50 // This is used in blimp to emulate android fonts on linux. | 50 // This is used in blimp to emulate android fonts on linux. |
| 51 const char kAndroidFontsPath[] = "android-fonts-path"; | 51 const char kAndroidFontsPath[] = "android-fonts-path"; |
| 52 | 52 |
| 53 // Choose which logging channels in blink platform to activate. See | |
| 54 // Logging.cpp in blink's Source/platform for a list of available channels. | |
| 55 const char kBlinkPlatformLogChannels[] = "blink-platform-log-channels"; | |
| 56 | |
| 57 // Set blink settings. Format is <name>[=<value],<name>[=<value>],... | 53 // Set blink settings. Format is <name>[=<value],<name>[=<value>],... |
| 58 // The names are declared in Settings.in. For boolean type, use "true", "false", | 54 // The names are declared in Settings.in. For boolean type, use "true", "false", |
| 59 // or omit '=<value>' part to set to true. For enum type, use the int value of | 55 // or omit '=<value>' part to set to true. For enum type, use the int value of |
| 60 // the enum value. Applied after other command line flags and prefs. | 56 // the enum value. Applied after other command line flags and prefs. |
| 61 const char kBlinkSettings[] = "blink-settings"; | 57 const char kBlinkSettings[] = "blink-settings"; |
| 62 | 58 |
| 63 // Causes the browser process to crash on startup. | 59 // Causes the browser process to crash on startup. |
| 64 const char kBrowserCrashTest[] = "crash-test"; | 60 const char kBrowserCrashTest[] = "crash-test"; |
| 65 | 61 |
| 66 // Path to the exe to run for the renderer and plugin subprocesses. | 62 // Path to the exe to run for the renderer and plugin subprocesses. |
| (...skipping 1016 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1083 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1079 // the given directory. Used primarily to gather samples for IPC fuzzing. |
| 1084 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1080 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
| 1085 | 1081 |
| 1086 // Specifies the testcase used by the IPC fuzzer. | 1082 // Specifies the testcase used by the IPC fuzzer. |
| 1087 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1083 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
| 1088 #endif | 1084 #endif |
| 1089 | 1085 |
| 1090 // Don't dump stuff here, follow the same order as the header. | 1086 // Don't dump stuff here, follow the same order as the header. |
| 1091 | 1087 |
| 1092 } // namespace switches | 1088 } // namespace switches |
| OLD | NEW |