OLD | NEW |
---|---|
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 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 371 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
382 // in response to a Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN | 382 // in response to a Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN |
383 // for more background. | 383 // for more background. |
384 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; | 384 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; |
385 | 385 |
386 // With this flag set, Chrome will occasionally prompt the user to volunteer | 386 // With this flag set, Chrome will occasionally prompt the user to volunteer |
387 // Autofill usage data beyond what is collected by default. This is data that | 387 // Autofill usage data beyond what is collected by default. This is data that |
388 // we expect to be helpful for debugging, but that we do not want to send up | 388 // we expect to be helpful for debugging, but that we do not want to send up |
389 // automatically due to privacy concerns. | 389 // automatically due to privacy concerns. |
390 const char kEnableAutofillFeedback[] = "enable-autofill-feedback"; | 390 const char kEnableAutofillFeedback[] = "enable-autofill-feedback"; |
391 | 391 |
392 const char kEnableAutoSubmitCertificate[] = "enable-auto-submit-certificate"; | |
Mattias Nissler (ping if slow)
2011/08/09 15:37:25
What's the reason we develop this behind a flag? I
wtc
2011/08/11 18:33:55
Add a comment to explain what this command-line op
markusheintz_
2011/08/15 19:09:04
@mnissler: I thought it might be good to have a sw
markusheintz_
2011/08/15 19:09:04
I decided to remove the switch.
| |
393 | |
392 // This flag enables UI for clearing server data. Temporarily in place | 394 // This flag enables UI for clearing server data. Temporarily in place |
393 // until there's a server endpoint deployed. | 395 // until there's a server endpoint deployed. |
394 const char kEnableClearServerData[] = "enable-clear-server-data"; | 396 const char kEnableClearServerData[] = "enable-clear-server-data"; |
395 | 397 |
396 // Enable click-to-play for blocked plug-ins. | 398 // Enable click-to-play for blocked plug-ins. |
397 const char kEnableClickToPlay[] = "enable-click-to-play"; | 399 const char kEnableClickToPlay[] = "enable-click-to-play"; |
398 | 400 |
399 // This applies only when the process type is "service". Enables the | 401 // This applies only when the process type is "service". Enables the |
400 // Cloud Print Proxy component within the service process. | 402 // Cloud Print Proxy component within the service process. |
401 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; | 403 const char kEnableCloudPrintProxy[] = "enable-cloud-print-proxy"; |
(...skipping 838 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1240 | 1242 |
1241 // ----------------------------------------------------------------------------- | 1243 // ----------------------------------------------------------------------------- |
1242 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1244 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1243 // | 1245 // |
1244 // You were going to just dump your switches here, weren't you? Instead, | 1246 // You were going to just dump your switches here, weren't you? Instead, |
1245 // please put them in alphabetical order above, or in order inside the | 1247 // please put them in alphabetical order above, or in order inside the |
1246 // appropriate ifdef at the bottom. The order should match the header. | 1248 // appropriate ifdef at the bottom. The order should match the header. |
1247 // ----------------------------------------------------------------------------- | 1249 // ----------------------------------------------------------------------------- |
1248 | 1250 |
1249 } // namespace switches | 1251 } // namespace switches |
OLD | NEW |