| 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 #include "media/media_features.h" | 7 #include "media/media_features.h" |
| 8 | 8 |
| 9 namespace switches { | 9 namespace switches { |
| 10 | 10 |
| (...skipping 21 matching lines...) Expand all Loading... |
| 32 const char kAllowFileAccessFromFiles[] = "allow-file-access-from-files"; | 32 const char kAllowFileAccessFromFiles[] = "allow-file-access-from-files"; |
| 33 | 33 |
| 34 // Enables TLS/SSL errors on localhost to be ignored (no interstitial, | 34 // Enables TLS/SSL errors on localhost to be ignored (no interstitial, |
| 35 // no blocking of requests). | 35 // no blocking of requests). |
| 36 const char kAllowInsecureLocalhost[] = "allow-insecure-localhost"; | 36 const char kAllowInsecureLocalhost[] = "allow-insecure-localhost"; |
| 37 | 37 |
| 38 // Allows loopback interface to be added in network list for peer connection. | 38 // Allows loopback interface to be added in network list for peer connection. |
| 39 const char kAllowLoopbackInPeerConnection[] = | 39 const char kAllowLoopbackInPeerConnection[] = |
| 40 "allow-loopback-in-peer-connection"; | 40 "allow-loopback-in-peer-connection"; |
| 41 | 41 |
| 42 // Enables the sandboxed processes to run without a job object assigned to them. | |
| 43 // This flag is required to allow Chrome to run in RemoteApps or Citrix. This | |
| 44 // flag can reduce the security of the sandboxed processes and allow them to do | |
| 45 // certain API calls like shut down Windows or access the clipboard. Also we | |
| 46 // lose the chance to kill some processes until the outer job that owns them | |
| 47 // finishes. | |
| 48 const char kAllowNoSandboxJob[] = "allow-no-sandbox-job"; | |
| 49 | |
| 50 // Allows debugging of sandboxed processes (see zygote_main_linux.cc). | 42 // Allows debugging of sandboxed processes (see zygote_main_linux.cc). |
| 51 const char kAllowSandboxDebugging[] = "allow-sandbox-debugging"; | 43 const char kAllowSandboxDebugging[] = "allow-sandbox-debugging"; |
| 52 | 44 |
| 53 // Uses the android SkFontManager on linux. The specified directory should | 45 // Uses the android SkFontManager on linux. The specified directory should |
| 54 // include the configuration xml file with the name "fonts.xml". | 46 // include the configuration xml file with the name "fonts.xml". |
| 55 // This is used in blimp to emulate android fonts on linux. | 47 // This is used in blimp to emulate android fonts on linux. |
| 56 const char kAndroidFontsPath[] = "android-fonts-path"; | 48 const char kAndroidFontsPath[] = "android-fonts-path"; |
| 57 | 49 |
| 58 // Set blink settings. Format is <name>[=<value],<name>[=<value>],... | 50 // Set blink settings. Format is <name>[=<value],<name>[=<value>],... |
| 59 // The names are declared in Settings.in. For boolean type, use "true", "false", | 51 // The names are declared in Settings.in. For boolean type, use "true", "false", |
| (...skipping 1036 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1096 // the given directory. Used primarily to gather samples for IPC fuzzing. | 1088 // the given directory. Used primarily to gather samples for IPC fuzzing. |
| 1097 const char kIpcDumpDirectory[] = "ipc-dump-directory"; | 1089 const char kIpcDumpDirectory[] = "ipc-dump-directory"; |
| 1098 | 1090 |
| 1099 // Specifies the testcase used by the IPC fuzzer. | 1091 // Specifies the testcase used by the IPC fuzzer. |
| 1100 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; | 1092 const char kIpcFuzzerTestcase[] = "ipc-fuzzer-testcase"; |
| 1101 #endif | 1093 #endif |
| 1102 | 1094 |
| 1103 // Don't dump stuff here, follow the same order as the header. | 1095 // Don't dump stuff here, follow the same order as the header. |
| 1104 | 1096 |
| 1105 } // namespace switches | 1097 } // namespace switches |
| OLD | NEW |