| 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 121 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 132 // public key. | 132 // public key. |
| 133 // Multiple logs can be specified by repeating description:key pairs, | 133 // Multiple logs can be specified by repeating description:key pairs, |
| 134 // separated by a comma. | 134 // separated by a comma. |
| 135 const char kCertificateTransparencyLog[] = | 135 const char kCertificateTransparencyLog[] = |
| 136 "certificate-transparency-log"; | 136 "certificate-transparency-log"; |
| 137 | 137 |
| 138 // How often (in seconds) to check for updates. Should only be used for testing | 138 // How often (in seconds) to check for updates. Should only be used for testing |
| 139 // purposes. | 139 // purposes. |
| 140 const char kCheckForUpdateIntervalSec[] = "check-for-update-interval"; | 140 const char kCheckForUpdateIntervalSec[] = "check-for-update-interval"; |
| 141 | 141 |
| 142 // Checks the cloud print connector policy, informing the service process if | |
| 143 // the policy is set to disallow the connector, then quits. | |
| 144 const char kCheckCloudPrintConnectorPolicy[] = | |
| 145 "check-cloud-print-connector-policy"; | |
| 146 | |
| 147 // Comma-separated list of SSL cipher suites to disable. | 142 // Comma-separated list of SSL cipher suites to disable. |
| 148 const char kCipherSuiteBlacklist[] = "cipher-suite-blacklist"; | 143 const char kCipherSuiteBlacklist[] = "cipher-suite-blacklist"; |
| 149 | 144 |
| 150 // Tells chrome to display the cloud print dialog and upload the specified file | 145 // Tells chrome to display the cloud print dialog and upload the specified file |
| 151 // for printing. | 146 // for printing. |
| 152 const char kCloudPrintFile[] = "cloud-print-file"; | 147 const char kCloudPrintFile[] = "cloud-print-file"; |
| 153 | 148 |
| 154 // Specifies the mime type to be used when uploading data from the file | 149 // Specifies the mime type to be used when uploading data from the file |
| 155 // referenced by cloud-print-file. Defaults to "application/pdf" if | 150 // referenced by cloud-print-file. Defaults to "application/pdf" if |
| 156 // unspecified. | 151 // unspecified. |
| (...skipping 1255 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1412 | 1407 |
| 1413 // ----------------------------------------------------------------------------- | 1408 // ----------------------------------------------------------------------------- |
| 1414 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1409 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1415 // | 1410 // |
| 1416 // You were going to just dump your switches here, weren't you? Instead, please | 1411 // You were going to just dump your switches here, weren't you? Instead, please |
| 1417 // put them in alphabetical order above, or in order inside the appropriate | 1412 // put them in alphabetical order above, or in order inside the appropriate |
| 1418 // ifdef at the bottom. The order should match the header. | 1413 // ifdef at the bottom. The order should match the header. |
| 1419 // ----------------------------------------------------------------------------- | 1414 // ----------------------------------------------------------------------------- |
| 1420 | 1415 |
| 1421 } // namespace switches | 1416 } // namespace switches |
| OLD | NEW |