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 266 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
277 const char kDisableBookmarkAutocompleteProvider[] = | 277 const char kDisableBookmarkAutocompleteProvider[] = |
278 "disable-bookmark-autocomplete-provider"; | 278 "disable-bookmark-autocomplete-provider"; |
279 | 279 |
280 // Disables the client-side phishing detection feature. Note that even if | 280 // Disables the client-side phishing detection feature. Note that even if |
281 // client-side phishing detection is enabled, it will only be active if the | 281 // client-side phishing detection is enabled, it will only be active if the |
282 // user has opted in to UMA stats and SafeBrowsing is enabled in the | 282 // user has opted in to UMA stats and SafeBrowsing is enabled in the |
283 // preferences. | 283 // preferences. |
284 const char kDisableClientSidePhishingDetection[] = | 284 const char kDisableClientSidePhishingDetection[] = |
285 "disable-client-side-phishing-detection"; | 285 "disable-client-side-phishing-detection"; |
286 | 286 |
287 // Disables the new cloud policy stack. | |
288 const char kDisableCloudPolicyService[] = "disable-cloud-policy-service"; | |
289 | |
290 const char kDisableComponentUpdate[] = "disable-component-update"; | 287 const char kDisableComponentUpdate[] = "disable-component-update"; |
291 | 288 |
292 // Disables establishing certificate revocation information by downloading a | 289 // Disables establishing certificate revocation information by downloading a |
293 // set of CRLs rather than performing on-line checks. | 290 // set of CRLs rather than performing on-line checks. |
294 const char kDisableCRLSets[] = "disable-crl-sets"; | 291 const char kDisableCRLSets[] = "disable-crl-sets"; |
295 | 292 |
296 // Disables the custom JumpList on Windows 7. | 293 // Disables the custom JumpList on Windows 7. |
297 const char kDisableCustomJumpList[] = "disable-custom-jumplist"; | 294 const char kDisableCustomJumpList[] = "disable-custom-jumplist"; |
298 | 295 |
299 // Disables installation of default apps on first run. This is used during | 296 // Disables installation of default apps on first run. This is used during |
(...skipping 1317 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1617 | 1614 |
1618 // ----------------------------------------------------------------------------- | 1615 // ----------------------------------------------------------------------------- |
1619 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1616 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1620 // | 1617 // |
1621 // You were going to just dump your switches here, weren't you? Instead, please | 1618 // You were going to just dump your switches here, weren't you? Instead, please |
1622 // put them in alphabetical order above, or in order inside the appropriate | 1619 // put them in alphabetical order above, or in order inside the appropriate |
1623 // ifdef at the bottom. The order should match the header. | 1620 // ifdef at the bottom. The order should match the header. |
1624 // ----------------------------------------------------------------------------- | 1621 // ----------------------------------------------------------------------------- |
1625 | 1622 |
1626 } // namespace switches | 1623 } // namespace switches |
OLD | NEW |