| 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 978 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 989 // | 989 // |
| 990 // Disables safebrowsing feature that checks download url and downloads | 990 // Disables safebrowsing feature that checks download url and downloads |
| 991 // content's hash to make sure the content are not malicious. | 991 // content's hash to make sure the content are not malicious. |
| 992 const char kSbDisableDownloadProtection[] = | 992 const char kSbDisableDownloadProtection[] = |
| 993 "safebrowsing-disable-download-protection"; | 993 "safebrowsing-disable-download-protection"; |
| 994 | 994 |
| 995 // Disables safebrowsing feature that checks for blacklisted extensions. | 995 // Disables safebrowsing feature that checks for blacklisted extensions. |
| 996 const char kSbDisableExtensionBlacklist[] = | 996 const char kSbDisableExtensionBlacklist[] = |
| 997 "safebrowsing-disable-extension-blacklist"; | 997 "safebrowsing-disable-extension-blacklist"; |
| 998 | 998 |
| 999 // Disables safebrowsing feature that provides a side-effect free whitelist. | |
| 1000 const char kSbDisableSideEffectFreeWhitelist[] = | |
| 1001 "safebrowsing-disable-side-effect-free-whitelist"; | |
| 1002 | |
| 1003 // Causes the process to run as a service process. | 999 // Causes the process to run as a service process. |
| 1004 const char kServiceProcess[] = "service"; | 1000 const char kServiceProcess[] = "service"; |
| 1005 | 1001 |
| 1006 // Sets a token in the token service, for testing. | 1002 // Sets a token in the token service, for testing. |
| 1007 const char kSetToken[] = "set-token"; | 1003 const char kSetToken[] = "set-token"; |
| 1008 | 1004 |
| 1009 // If true the app list will be shown. | 1005 // If true the app list will be shown. |
| 1010 const char kShowAppList[] = "show-app-list"; | 1006 const char kShowAppList[] = "show-app-list"; |
| 1011 | 1007 |
| 1012 // See kHideIcons. | 1008 // See kHideIcons. |
| (...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1400 | 1396 |
| 1401 // ----------------------------------------------------------------------------- | 1397 // ----------------------------------------------------------------------------- |
| 1402 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1398 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1403 // | 1399 // |
| 1404 // You were going to just dump your switches here, weren't you? Instead, please | 1400 // You were going to just dump your switches here, weren't you? Instead, please |
| 1405 // put them in alphabetical order above, or in order inside the appropriate | 1401 // put them in alphabetical order above, or in order inside the appropriate |
| 1406 // ifdef at the bottom. The order should match the header. | 1402 // ifdef at the bottom. The order should match the header. |
| 1407 // ----------------------------------------------------------------------------- | 1403 // ----------------------------------------------------------------------------- |
| 1408 | 1404 |
| 1409 } // namespace switches | 1405 } // namespace switches |
| OLD | NEW |