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 "chrome/common/chrome_switches.h" | 5 #include "chrome/common/chrome_switches.h" |
6 | 6 |
7 #include "base/base_switches.h" | 7 #include "base/base_switches.h" |
8 #include "base/command_line.h" | 8 #include "base/command_line.h" |
9 | 9 |
10 namespace switches { | 10 namespace switches { |
(...skipping 1112 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1123 // such as extension-related occurrences and crashes. Optionally, this may be | 1123 // such as extension-related occurrences and crashes. Optionally, this may be |
1124 // run with an integer value representing the interval between the timed | 1124 // run with an integer value representing the interval between the timed |
1125 // metric gatherings, measured in seconds (if invalid or not provided, the | 1125 // metric gatherings, measured in seconds (if invalid or not provided, the |
1126 // default interval is used). | 1126 // default interval is used). |
1127 const char kPerformanceMonitorGathering[] = "performance-monitor-gathering"; | 1127 const char kPerformanceMonitorGathering[] = "performance-monitor-gathering"; |
1128 | 1128 |
1129 // Read previously recorded data from the cache. Only cached data is read. | 1129 // Read previously recorded data from the cache. Only cached data is read. |
1130 // See kRecordMode. | 1130 // See kRecordMode. |
1131 const char kPlaybackMode[] = "playback-mode"; | 1131 const char kPlaybackMode[] = "playback-mode"; |
1132 | 1132 |
1133 // Overrides the path to the location that PNaCl is installed. | |
1134 const char kPnaclDir[] = "pnacl-dir"; | |
1135 | |
1136 // Use the PPAPI (Pepper) Flash found at the given path. | 1133 // Use the PPAPI (Pepper) Flash found at the given path. |
1137 const char kPpapiFlashPath[] = "ppapi-flash-path"; | 1134 const char kPpapiFlashPath[] = "ppapi-flash-path"; |
1138 | 1135 |
1139 // Report the given version for the PPAPI (Pepper) Flash. The version should be | 1136 // Report the given version for the PPAPI (Pepper) Flash. The version should be |
1140 // numbers separated by '.'s (e.g., "12.3.456.78"). If not specified, it | 1137 // numbers separated by '.'s (e.g., "12.3.456.78"). If not specified, it |
1141 // defaults to "10.2.999.999". | 1138 // defaults to "10.2.999.999". |
1142 const char kPpapiFlashVersion[] = "ppapi-flash-version"; | 1139 const char kPpapiFlashVersion[] = "ppapi-flash-version"; |
1143 | 1140 |
1144 // Triggers prerendering of search base page to prefetch results for the typed | 1141 // Triggers prerendering of search base page to prefetch results for the typed |
1145 // omnibox query. Only has an effect when prerender is enabled. | 1142 // omnibox query. Only has an effect when prerender is enabled. |
(...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1646 | 1643 |
1647 // ----------------------------------------------------------------------------- | 1644 // ----------------------------------------------------------------------------- |
1648 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1645 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1649 // | 1646 // |
1650 // You were going to just dump your switches here, weren't you? Instead, please | 1647 // You were going to just dump your switches here, weren't you? Instead, please |
1651 // put them in alphabetical order above, or in order inside the appropriate | 1648 // put them in alphabetical order above, or in order inside the appropriate |
1652 // ifdef at the bottom. The order should match the header. | 1649 // ifdef at the bottom. The order should match the header. |
1653 // ----------------------------------------------------------------------------- | 1650 // ----------------------------------------------------------------------------- |
1654 | 1651 |
1655 } // namespace switches | 1652 } // namespace switches |
OLD | NEW |