| 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/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 453 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 464 | 464 |
| 465 #if defined(OS_WIN) | 465 #if defined(OS_WIN) |
| 466 // Enumerates and prints a child process' most dangerous handles when it | 466 // Enumerates and prints a child process' most dangerous handles when it |
| 467 // is terminated. | 467 // is terminated. |
| 468 const char kAuditHandles[] = "enable-handle-auditing"; | 468 const char kAuditHandles[] = "enable-handle-auditing"; |
| 469 | 469 |
| 470 // The same as kAuditHandles except all handles are enumerated. | 470 // The same as kAuditHandles except all handles are enumerated. |
| 471 const char kAuditAllHandles[] = "enable-handle-auditing-all"; | 471 const char kAuditAllHandles[] = "enable-handle-auditing-all"; |
| 472 #endif | 472 #endif |
| 473 | 473 |
| 474 #if defined(OS_POSIX) && !defined(OS_MACOSX) |
| 475 // Specify the amount the trackpad should scroll by. |
| 476 const char kScrollPixels[] = "scroll-pixels"; |
| 477 #endif |
| 478 |
| 474 #if !defined(OFFICIAL_BUILD) | 479 #if !defined(OFFICIAL_BUILD) |
| 475 // Causes the renderer process to throw an assertion on launch. | 480 // Causes the renderer process to throw an assertion on launch. |
| 476 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; | 481 const char kRendererCheckFalseTest[] = "renderer-check-false-test"; |
| 477 #endif | 482 #endif |
| 478 | 483 |
| 479 } // namespace switches | 484 } // namespace switches |
| OLD | NEW |