| 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/public/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. |
| (...skipping 477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 488 | 488 |
| 489 // Causes the process to run as a worker subprocess. | 489 // Causes the process to run as a worker subprocess. |
| 490 const char kWorkerProcess[] = "worker"; | 490 const char kWorkerProcess[] = "worker"; |
| 491 | 491 |
| 492 // The prefix used when starting the zygote process. (i.e. 'gdb --args') | 492 // The prefix used when starting the zygote process. (i.e. 'gdb --args') |
| 493 const char kZygoteCmdPrefix[] = "zygote-cmd-prefix"; | 493 const char kZygoteCmdPrefix[] = "zygote-cmd-prefix"; |
| 494 | 494 |
| 495 // Causes the process to run as a renderer zygote. | 495 // Causes the process to run as a renderer zygote. |
| 496 const char kZygoteProcess[] = "zygote"; | 496 const char kZygoteProcess[] = "zygote"; |
| 497 | 497 |
| 498 // Enables moving cursor by word in visual order. |
| 499 const char kEnableVisualWordMovement[] = "enable-visual-word-movement"; |
| 500 |
| 498 #if defined(OS_POSIX) && !defined(OS_MACOSX) | 501 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
| 499 // Specify the amount the trackpad should scroll by. | 502 // Specify the amount the trackpad should scroll by. |
| 500 const char kScrollPixels[] = "scroll-pixels"; | 503 const char kScrollPixels[] = "scroll-pixels"; |
| 501 #endif | 504 #endif |
| 502 | 505 |
| 503 #if defined(OS_MACOSX) || defined(OS_WIN) | 506 #if defined(OS_MACOSX) || defined(OS_WIN) |
| 504 // Use the system SSL library (Secure Transport on Mac, SChannel on Windows) | 507 // Use the system SSL library (Secure Transport on Mac, SChannel on Windows) |
| 505 // instead of NSS for SSL. | 508 // instead of NSS for SSL. |
| 506 const char kUseSystemSSL[] = "use-system-ssl"; | 509 const char kUseSystemSSL[] = "use-system-ssl"; |
| 507 #endif | 510 #endif |
| 508 | 511 |
| 509 #if !defined(OFFICIAL_BUILD) | 512 #if !defined(OFFICIAL_BUILD) |
| 510 // Causes the renderer process to throw an assertion on launch. | 513 // Causes the renderer process to throw an assertion on launch. |
| 511 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; | 514 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; |
| 512 #endif | 515 #endif |
| 513 | 516 |
| 514 } // namespace switches | 517 } // namespace switches |
| OLD | NEW |