| 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 965 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 976 // | 976 // |
| 977 // Disables safebrowsing feature that checks download url and downloads | 977 // Disables safebrowsing feature that checks download url and downloads |
| 978 // content's hash to make sure the content are not malicious. | 978 // content's hash to make sure the content are not malicious. |
| 979 const char kSbDisableDownloadProtection[] = | 979 const char kSbDisableDownloadProtection[] = |
| 980 "safebrowsing-disable-download-protection"; | 980 "safebrowsing-disable-download-protection"; |
| 981 | 981 |
| 982 // Disables safebrowsing feature that checks for blacklisted extensions. | 982 // Disables safebrowsing feature that checks for blacklisted extensions. |
| 983 const char kSbDisableExtensionBlacklist[] = | 983 const char kSbDisableExtensionBlacklist[] = |
| 984 "safebrowsing-disable-extension-blacklist"; | 984 "safebrowsing-disable-extension-blacklist"; |
| 985 | 985 |
| 986 // Disables safebrowsing feature that provides a side-effect free whitelist. | |
| 987 const char kSbDisableSideEffectFreeWhitelist[] = | |
| 988 "safebrowsing-disable-side-effect-free-whitelist"; | |
| 989 | |
| 990 // Causes the process to run as a service process. | 986 // Causes the process to run as a service process. |
| 991 const char kServiceProcess[] = "service"; | 987 const char kServiceProcess[] = "service"; |
| 992 | 988 |
| 993 // Sets a token in the token service, for testing. | 989 // Sets a token in the token service, for testing. |
| 994 const char kSetToken[] = "set-token"; | 990 const char kSetToken[] = "set-token"; |
| 995 | 991 |
| 996 // If true the app list will be shown. | 992 // If true the app list will be shown. |
| 997 const char kShowAppList[] = "show-app-list"; | 993 const char kShowAppList[] = "show-app-list"; |
| 998 | 994 |
| 999 // See kHideIcons. | 995 // See kHideIcons. |
| (...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1387 | 1383 |
| 1388 // ----------------------------------------------------------------------------- | 1384 // ----------------------------------------------------------------------------- |
| 1389 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1385 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1390 // | 1386 // |
| 1391 // You were going to just dump your switches here, weren't you? Instead, please | 1387 // You were going to just dump your switches here, weren't you? Instead, please |
| 1392 // put them in alphabetical order above, or in order inside the appropriate | 1388 // put them in alphabetical order above, or in order inside the appropriate |
| 1393 // ifdef at the bottom. The order should match the header. | 1389 // ifdef at the bottom. The order should match the header. |
| 1394 // ----------------------------------------------------------------------------- | 1390 // ----------------------------------------------------------------------------- |
| 1395 | 1391 |
| 1396 } // namespace switches | 1392 } // namespace switches |
| OLD | NEW |