| 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 205 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 216 // Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN for more | 216 // Negotiate challenge. See HttpAuthHandlerNegotiate::CreateSPN for more |
| 217 // background. | 217 // background. |
| 218 const char kDisableAuthNegotiateCnameLookup[] = | 218 const char kDisableAuthNegotiateCnameLookup[] = |
| 219 "disable-auth-negotiate-cname-lookup"; | 219 "disable-auth-negotiate-cname-lookup"; |
| 220 | 220 |
| 221 // Disable several subsystems which run network requests in the background. | 221 // Disable several subsystems which run network requests in the background. |
| 222 // This is for use when doing network performance testing to avoid noise in the | 222 // This is for use when doing network performance testing to avoid noise in the |
| 223 // measurements. | 223 // measurements. |
| 224 const char kDisableBackgroundNetworking[] = "disable-background-networking"; | 224 const char kDisableBackgroundNetworking[] = "disable-background-networking"; |
| 225 | 225 |
| 226 // Disables the bundled PPAPI version of Flash. | |
| 227 const char kDisableBundledPpapiFlash[] = "disable-bundled-ppapi-flash"; | |
| 228 | |
| 229 // Disables the client-side phishing detection feature. Note that even if | 226 // Disables the client-side phishing detection feature. Note that even if |
| 230 // client-side phishing detection is enabled, it will only be active if the | 227 // client-side phishing detection is enabled, it will only be active if the |
| 231 // user has opted in to UMA stats and SafeBrowsing is enabled in the | 228 // user has opted in to UMA stats and SafeBrowsing is enabled in the |
| 232 // preferences. | 229 // preferences. |
| 233 const char kDisableClientSidePhishingDetection[] = | 230 const char kDisableClientSidePhishingDetection[] = |
| 234 "disable-client-side-phishing-detection"; | 231 "disable-client-side-phishing-detection"; |
| 235 | 232 |
| 236 // Disable default component extensions with background pages - useful for | 233 // Disable default component extensions with background pages - useful for |
| 237 // performance tests where these pages may interfere with perf results. | 234 // performance tests where these pages may interfere with perf results. |
| 238 const char kDisableComponentExtensionsWithBackgroundPages[] = | 235 const char kDisableComponentExtensionsWithBackgroundPages[] = |
| (...skipping 1174 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1413 | 1410 |
| 1414 // ----------------------------------------------------------------------------- | 1411 // ----------------------------------------------------------------------------- |
| 1415 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1412 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1416 // | 1413 // |
| 1417 // You were going to just dump your switches here, weren't you? Instead, please | 1414 // You were going to just dump your switches here, weren't you? Instead, please |
| 1418 // put them in alphabetical order above, or in order inside the appropriate | 1415 // put them in alphabetical order above, or in order inside the appropriate |
| 1419 // ifdef at the bottom. The order should match the header. | 1416 // ifdef at the bottom. The order should match the header. |
| 1420 // ----------------------------------------------------------------------------- | 1417 // ----------------------------------------------------------------------------- |
| 1421 | 1418 |
| 1422 } // namespace switches | 1419 } // namespace switches |
| OLD | NEW |