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 "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 437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
448 | 448 |
449 // Causes the process to run as a plugin subprocess. | 449 // Causes the process to run as a plugin subprocess. |
450 const char kPluginProcess[] = "plugin"; | 450 const char kPluginProcess[] = "plugin"; |
451 | 451 |
452 // Causes the plugin process to display a dialog on launch. | 452 // Causes the plugin process to display a dialog on launch. |
453 const char kPluginStartupDialog[] = "plugin-startup-dialog"; | 453 const char kPluginStartupDialog[] = "plugin-startup-dialog"; |
454 | 454 |
455 // Argument to the process type that indicates a PPAPI broker process type. | 455 // Argument to the process type that indicates a PPAPI broker process type. |
456 const char kPpapiBrokerProcess[] = "ppapi-broker"; | 456 const char kPpapiBrokerProcess[] = "ppapi-broker"; |
457 | 457 |
458 // "Command-line" arguments for the PPAPI Flash; used for debugging options. | |
459 const char kPpapiFlashArgs[] = "ppapi-flash-args"; | |
460 | |
461 // Use the PPAPI (Pepper) Flash found at the given path. | 458 // Use the PPAPI (Pepper) Flash found at the given path. |
462 const char kPpapiFlashPath[] = "ppapi-flash-path"; | 459 const char kPpapiFlashPath[] = "ppapi-flash-path"; |
463 | 460 |
464 // Report the given version for the PPAPI (Pepper) Flash. The version should be | 461 // Report the given version for the PPAPI (Pepper) Flash. The version should be |
465 // numbers separated by '.'s (e.g., "12.3.456.78"). If not specified, it | 462 // numbers separated by '.'s (e.g., "12.3.456.78"). If not specified, it |
466 // defaults to "10.2.999.999". | 463 // defaults to "10.2.999.999". |
467 const char kPpapiFlashVersion[] = "ppapi-flash-version"; | 464 const char kPpapiFlashVersion[] = "ppapi-flash-version"; |
468 | 465 |
469 // Runs PPAPI (Pepper) plugins out-of-process. | 466 // Runs PPAPI (Pepper) plugins out-of-process. |
470 const char kPpapiOutOfProcess[] = "ppapi-out-of-process"; | 467 const char kPpapiOutOfProcess[] = "ppapi-out-of-process"; |
(...skipping 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
658 extern const char kFlingTapSuppressMaxDown[] = "fling-tap-suppress-max-down"; | 655 extern const char kFlingTapSuppressMaxDown[] = "fling-tap-suppress-max-down"; |
659 | 656 |
660 // Maximum time between mousedown and mouseup to be considered a tap. | 657 // Maximum time between mousedown and mouseup to be considered a tap. |
661 extern const char kFlingTapSuppressMaxGap[] = "fling-tap-suppress-max-gap"; | 658 extern const char kFlingTapSuppressMaxGap[] = "fling-tap-suppress-max-gap"; |
662 | 659 |
663 // Forces usage of the test compositor. Needed to run ui tests on bots. | 660 // Forces usage of the test compositor. Needed to run ui tests on bots. |
664 extern const char kTestCompositor[] = "test-compositor"; | 661 extern const char kTestCompositor[] = "test-compositor"; |
665 #endif | 662 #endif |
666 | 663 |
667 } // namespace switches | 664 } // namespace switches |
OLD | NEW |