| 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 867 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 878 | 878 |
| 879 // Packages an extension to a .crx installable file from a given directory. | 879 // Packages an extension to a .crx installable file from a given directory. |
| 880 const char kPackExtension[] = "pack-extension"; | 880 const char kPackExtension[] = "pack-extension"; |
| 881 | 881 |
| 882 // Optional PEM private key to use in signing packaged .crx. | 882 // Optional PEM private key to use in signing packaged .crx. |
| 883 const char kPackExtensionKey[] = "pack-extension-key"; | 883 const char kPackExtensionKey[] = "pack-extension-key"; |
| 884 | 884 |
| 885 // Specifies the path to the user data folder for the parent profile. | 885 // Specifies the path to the user data folder for the parent profile. |
| 886 const char kParentProfile[] = "parent-profile"; | 886 const char kParentProfile[] = "parent-profile"; |
| 887 | 887 |
| 888 // Launches PerformanceMonitor at startup, which will gather statistics about | |
| 889 // Chrome's CPU and memory usage, page load times, startup times, and network | |
| 890 // usage, and will also store information about events which may be of interest, | |
| 891 // such as extension-related occurrences and crashes. Optionally, this may be | |
| 892 // run with an integer value representing the interval between the timed | |
| 893 // metric gatherings, measured in seconds (if invalid or not provided, the | |
| 894 // default interval is used). | |
| 895 const char kPerformanceMonitorGathering[] = "performance-monitor-gathering"; | |
| 896 | |
| 897 // Development flag for permission request API. This flag is needed until | 888 // Development flag for permission request API. This flag is needed until |
| 898 // the API is finalized. | 889 // the API is finalized. |
| 899 // TODO(bauerb): Remove when this flag is not needed anymore. | 890 // TODO(bauerb): Remove when this flag is not needed anymore. |
| 900 const char kPermissionRequestApiScope[] = "permission-request-api-scope"; | 891 const char kPermissionRequestApiScope[] = "permission-request-api-scope"; |
| 901 | 892 |
| 902 // Development flag for permission request API. This flag is needed until | 893 // Development flag for permission request API. This flag is needed until |
| 903 // the API is finalized. | 894 // the API is finalized. |
| 904 // TODO(bauerb): Remove when this flag is not needed anymore. | 895 // TODO(bauerb): Remove when this flag is not needed anymore. |
| 905 const char kPermissionRequestApiUrl[] = "permission-request-api-url"; | 896 const char kPermissionRequestApiUrl[] = "permission-request-api-url"; |
| 906 | 897 |
| (...skipping 447 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1354 | 1345 |
| 1355 // ----------------------------------------------------------------------------- | 1346 // ----------------------------------------------------------------------------- |
| 1356 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1347 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1357 // | 1348 // |
| 1358 // You were going to just dump your switches here, weren't you? Instead, please | 1349 // You were going to just dump your switches here, weren't you? Instead, please |
| 1359 // put them in alphabetical order above, or in order inside the appropriate | 1350 // put them in alphabetical order above, or in order inside the appropriate |
| 1360 // ifdef at the bottom. The order should match the header. | 1351 // ifdef at the bottom. The order should match the header. |
| 1361 // ----------------------------------------------------------------------------- | 1352 // ----------------------------------------------------------------------------- |
| 1362 | 1353 |
| 1363 } // namespace switches | 1354 } // namespace switches |
| OLD | NEW |