| 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 427 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 438 | 438 |
| 439 // Causes the process to run as a plugin subprocess. | 439 // Causes the process to run as a plugin subprocess. |
| 440 const char kPluginProcess[] = "plugin"; | 440 const char kPluginProcess[] = "plugin"; |
| 441 | 441 |
| 442 // Causes the plugin process to display a dialog on launch. | 442 // Causes the plugin process to display a dialog on launch. |
| 443 const char kPluginStartupDialog[] = "plugin-startup-dialog"; | 443 const char kPluginStartupDialog[] = "plugin-startup-dialog"; |
| 444 | 444 |
| 445 // Argument to the process type that indicates a PPAPI broker process type. | 445 // Argument to the process type that indicates a PPAPI broker process type. |
| 446 const char kPpapiBrokerProcess[] = "ppapi-broker"; | 446 const char kPpapiBrokerProcess[] = "ppapi-broker"; |
| 447 | 447 |
| 448 // "Command-line" arguments for the PPAPI Flash; used for debugging options. | |
| 449 const char kPpapiFlashArgs[] = "ppapi-flash-args"; | |
| 450 | |
| 451 // Use the PPAPI (Pepper) Flash found at the given path. | 448 // Use the PPAPI (Pepper) Flash found at the given path. |
| 452 const char kPpapiFlashPath[] = "ppapi-flash-path"; | 449 const char kPpapiFlashPath[] = "ppapi-flash-path"; |
| 453 | 450 |
| 454 // Report the given version for the PPAPI (Pepper) Flash. The version should be | 451 // Report the given version for the PPAPI (Pepper) Flash. The version should be |
| 455 // numbers separated by '.'s (e.g., "12.3.456.78"). If not specified, it | 452 // numbers separated by '.'s (e.g., "12.3.456.78"). If not specified, it |
| 456 // defaults to "10.2.999.999". | 453 // defaults to "10.2.999.999". |
| 457 const char kPpapiFlashVersion[] = "ppapi-flash-version"; | 454 const char kPpapiFlashVersion[] = "ppapi-flash-version"; |
| 458 | 455 |
| 459 // Runs PPAPI (Pepper) plugins out-of-process. | 456 // Runs PPAPI (Pepper) plugins out-of-process. |
| 460 const char kPpapiOutOfProcess[] = "ppapi-out-of-process"; | 457 const char kPpapiOutOfProcess[] = "ppapi-out-of-process"; |
| (...skipping 173 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 634 extern const char kFlingTapSuppressMaxDown[] = "fling-tap-suppress-max-down"; | 631 extern const char kFlingTapSuppressMaxDown[] = "fling-tap-suppress-max-down"; |
| 635 | 632 |
| 636 // Maximum time between mousedown and mouseup to be considered a tap. | 633 // Maximum time between mousedown and mouseup to be considered a tap. |
| 637 extern const char kFlingTapSuppressMaxGap[] = "fling-tap-suppress-max-gap"; | 634 extern const char kFlingTapSuppressMaxGap[] = "fling-tap-suppress-max-gap"; |
| 638 | 635 |
| 639 // Forces usage of the test compositor. Needed to run ui tests on bots. | 636 // Forces usage of the test compositor. Needed to run ui tests on bots. |
| 640 extern const char kTestCompositor[] = "test-compositor"; | 637 extern const char kTestCompositor[] = "test-compositor"; |
| 641 #endif | 638 #endif |
| 642 | 639 |
| 643 } // namespace switches | 640 } // namespace switches |
| OLD | NEW |