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 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
264 const char kDisableBackgroundMode[] = "disable-background-mode"; | 264 const char kDisableBackgroundMode[] = "disable-background-mode"; |
265 | 265 |
266 // Disable several subsystems which run network requests in the background. | 266 // Disable several subsystems which run network requests in the background. |
267 // This is for use when doing network performance testing to avoid noise in the | 267 // This is for use when doing network performance testing to avoid noise in the |
268 // measurements. | 268 // measurements. |
269 const char kDisableBackgroundNetworking[] = "disable-background-networking"; | 269 const char kDisableBackgroundNetworking[] = "disable-background-networking"; |
270 | 270 |
271 // Disables the bundled PPAPI version of Flash (if it's enabled by default). | 271 // Disables the bundled PPAPI version of Flash (if it's enabled by default). |
272 const char kDisableBundledPpapiFlash[] = "disable-bundled-ppapi-flash"; | 272 const char kDisableBundledPpapiFlash[] = "disable-bundled-ppapi-flash"; |
273 | 273 |
| 274 // Disables the bookmark autocomplete provider (BookmarkProvider). |
| 275 const char kDisableBookmarkAutocompleteProvider[] = |
| 276 "disable-bookmark-autocomplete-provider"; |
| 277 |
274 // Disables the client-side phishing detection feature. Note that even if | 278 // Disables the client-side phishing detection feature. Note that even if |
275 // client-side phishing detection is enabled, it will only be active if the | 279 // client-side phishing detection is enabled, it will only be active if the |
276 // user has opted in to UMA stats and SafeBrowsing is enabled in the | 280 // user has opted in to UMA stats and SafeBrowsing is enabled in the |
277 // preferences. | 281 // preferences. |
278 const char kDisableClientSidePhishingDetection[] = | 282 const char kDisableClientSidePhishingDetection[] = |
279 "disable-client-side-phishing-detection"; | 283 "disable-client-side-phishing-detection"; |
280 | 284 |
281 const char kDisableComponentUpdate[] = "disable-component-update"; | 285 const char kDisableComponentUpdate[] = "disable-component-update"; |
282 | 286 |
283 // Disables establishing a backup TCP connection if a specified timeout is | 287 // Disables establishing a backup TCP connection if a specified timeout is |
(...skipping 1292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1576 | 1580 |
1577 // ----------------------------------------------------------------------------- | 1581 // ----------------------------------------------------------------------------- |
1578 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1582 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1579 // | 1583 // |
1580 // You were going to just dump your switches here, weren't you? Instead, please | 1584 // You were going to just dump your switches here, weren't you? Instead, please |
1581 // put them in alphabetical order above, or in order inside the appropriate | 1585 // put them in alphabetical order above, or in order inside the appropriate |
1582 // ifdef at the bottom. The order should match the header. | 1586 // ifdef at the bottom. The order should match the header. |
1583 // ----------------------------------------------------------------------------- | 1587 // ----------------------------------------------------------------------------- |
1584 | 1588 |
1585 } // namespace switches | 1589 } // namespace switches |
OLD | NEW |