Chromium Code Reviews| 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 "build/build_config.h" | 5 #include "build/build_config.h" |
| 6 #include "content/public/common/content_switches.h" | 6 #include "content/public/common/content_switches.h" |
| 7 | 7 |
| 8 namespace switches { | 8 namespace switches { |
| 9 | 9 |
| 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to | 10 // The number of MSAA samples for canvas2D. Requires MSAA support by GPU to |
| (...skipping 657 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 668 // Set the value to '1' to enable the behavior where pages slide in and out in | 668 // Set the value to '1' to enable the behavior where pages slide in and out in |
| 669 // response to the horizontal overscroll gesture and a screenshot of the target | 669 // response to the horizontal overscroll gesture and a screenshot of the target |
| 670 // page is shown. | 670 // page is shown. |
| 671 // Set the value to '2' to enable the simplified overscroll UI where a | 671 // Set the value to '2' to enable the simplified overscroll UI where a |
| 672 // navigation arrow slides in from the side of the screen in response to the | 672 // navigation arrow slides in from the side of the screen in response to the |
| 673 // horizontal overscroll gesture. | 673 // horizontal overscroll gesture. |
| 674 // Defaults to '1'. | 674 // Defaults to '1'. |
| 675 const char kOverscrollHistoryNavigation[] = | 675 const char kOverscrollHistoryNavigation[] = |
| 676 "overscroll-history-navigation"; | 676 "overscroll-history-navigation"; |
| 677 | 677 |
| 678 // Default for passive listeners being added. Values are defined as: | |
|
Charlie Reis
2016/05/12 20:30:16
Can you give some context for what passive listene
dtapuska
2016/05/13 15:52:11
Done.
| |
| 679 // 'documentonlytrue' to set the default be true only for document level nodes. | |
| 680 // 'true' to set the default to be true on all nodes (when not specified). | |
| 681 // 'forcealltrue' to force the value on all nodes. | |
| 682 const char kPassiveListenersDefault[] = "passive-listeners-default"; | |
| 683 | |
| 678 // Argument to the process type that indicates a PPAPI broker process type. | 684 // Argument to the process type that indicates a PPAPI broker process type. |
| 679 const char kPpapiBrokerProcess[] = "ppapi-broker"; | 685 const char kPpapiBrokerProcess[] = "ppapi-broker"; |
| 680 | 686 |
| 681 // "Command-line" arguments for the PPAPI Flash; used for debugging options. | 687 // "Command-line" arguments for the PPAPI Flash; used for debugging options. |
| 682 const char kPpapiFlashArgs[] = "ppapi-flash-args"; | 688 const char kPpapiFlashArgs[] = "ppapi-flash-args"; |
| 683 | 689 |
| 684 // Runs PPAPI (Pepper) plugins in-process. | 690 // Runs PPAPI (Pepper) plugins in-process. |
| 685 const char kPpapiInProcess[] = "ppapi-in-process"; | 691 const char kPpapiInProcess[] = "ppapi-in-process"; |
| 686 | 692 |
| 687 // Specifies a command that should be used to launch the ppapi plugin process. | 693 // Specifies a command that should be used to launch the ppapi plugin process. |
| (...skipping 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1031 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; | 1037 const char kMemoryPressureThresholdsMb[] = "memory-pressure-thresholds-mb"; |
| 1032 | 1038 |
| 1033 // Enables the exporting of the tracing events to ETW. This is only supported on | 1039 // Enables the exporting of the tracing events to ETW. This is only supported on |
| 1034 // Windows Vista and later. | 1040 // Windows Vista and later. |
| 1035 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; | 1041 const char kTraceExportEventsToETW[] = "trace-export-events-to-etw"; |
| 1036 #endif | 1042 #endif |
| 1037 | 1043 |
| 1038 // Don't dump stuff here, follow the same order as the header. | 1044 // Don't dump stuff here, follow the same order as the header. |
| 1039 | 1045 |
| 1040 } // namespace switches | 1046 } // namespace switches |
| OLD | NEW |