| 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 "content/common/content_switches.h" | 5 #include "content/public/common/content_switches.h" |
| 6 | 6 |
| 7 namespace switches { | 7 namespace switches { |
| 8 | 8 |
| 9 // By default, file:// URIs cannot read other file:// URIs. This is an | 9 // By default, file:// URIs cannot read other file:// URIs. This is an |
| 10 // override for developers who need the old behavior for testing. | 10 // override for developers who need the old behavior for testing. |
| 11 const char kAllowFileAccessFromFiles[] = "allow-file-access-from-files"; | 11 const char kAllowFileAccessFromFiles[] = "allow-file-access-from-files"; |
| 12 | 12 |
| 13 // Allows debugging of sandboxed processes (see zygote_main_linux.cc). | 13 // Allows debugging of sandboxed processes (see zygote_main_linux.cc). |
| 14 const char kAllowSandboxDebugging[] = "allow-sandbox-debugging"; | 14 const char kAllowSandboxDebugging[] = "allow-sandbox-debugging"; |
| 15 | 15 |
| (...skipping 478 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 494 // instead of NSS for SSL. | 494 // instead of NSS for SSL. |
| 495 const char kUseSystemSSL[] = "use-system-ssl"; | 495 const char kUseSystemSSL[] = "use-system-ssl"; |
| 496 #endif | 496 #endif |
| 497 | 497 |
| 498 #if !defined(OFFICIAL_BUILD) | 498 #if !defined(OFFICIAL_BUILD) |
| 499 // Causes the renderer process to throw an assertion on launch. | 499 // Causes the renderer process to throw an assertion on launch. |
| 500 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; | 500 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; |
| 501 #endif | 501 #endif |
| 502 | 502 |
| 503 } // namespace switches | 503 } // namespace switches |
| OLD | NEW |