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 343 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
354 | 354 |
355 // Disable local-only Instant extended API. | 355 // Disable local-only Instant extended API. |
356 const char kDisableLocalOnlyInstantExtendedAPI[] = | 356 const char kDisableLocalOnlyInstantExtendedAPI[] = |
357 "disable-local-only-instant-extended-api"; | 357 "disable-local-only-instant-extended-api"; |
358 | 358 |
359 // Disable the behavior that the second click on a launcher item (the click when | 359 // Disable the behavior that the second click on a launcher item (the click when |
360 // the item is already active) minimizes the item. | 360 // the item is already active) minimizes the item. |
361 const char kDisableMinimizeOnSecondLauncherItemClick[] = | 361 const char kDisableMinimizeOnSecondLauncherItemClick[] = |
362 "disable-minimize-on-second-launcher-item-click"; | 362 "disable-minimize-on-second-launcher-item-click"; |
363 | 363 |
364 // Disables the native Autofill UI, which is part of the browser process rather | |
365 // than part of the renderer process. http://crbug.com/51644 | |
366 const char kDisableNativeAutofillUi[] = "disable-new-autofill-ui"; | |
367 | |
368 // Disables the menu on the NTP for accessing sessions from other devices. | 364 // Disables the menu on the NTP for accessing sessions from other devices. |
369 const char kDisableNTPOtherSessionsMenu[] = "disable-ntp-other-sessions-menu"; | 365 const char kDisableNTPOtherSessionsMenu[] = "disable-ntp-other-sessions-menu"; |
370 | 366 |
371 // Disable pop-up blocking. | 367 // Disable pop-up blocking. |
372 const char kDisablePopupBlocking[] = "disable-popup-blocking"; | 368 const char kDisablePopupBlocking[] = "disable-popup-blocking"; |
373 | 369 |
374 // Disable speculative TCP/IP preconnection. | 370 // Disable speculative TCP/IP preconnection. |
375 const char kDisablePreconnect[] = "disable-preconnect"; | 371 const char kDisablePreconnect[] = "disable-preconnect"; |
376 | 372 |
377 // Disable prerendering based on local browsing history. | 373 // Disable prerendering based on local browsing history. |
(...skipping 1247 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1625 | 1621 |
1626 // ----------------------------------------------------------------------------- | 1622 // ----------------------------------------------------------------------------- |
1627 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1623 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1628 // | 1624 // |
1629 // You were going to just dump your switches here, weren't you? Instead, please | 1625 // You were going to just dump your switches here, weren't you? Instead, please |
1630 // put them in alphabetical order above, or in order inside the appropriate | 1626 // put them in alphabetical order above, or in order inside the appropriate |
1631 // ifdef at the bottom. The order should match the header. | 1627 // ifdef at the bottom. The order should match the header. |
1632 // ----------------------------------------------------------------------------- | 1628 // ----------------------------------------------------------------------------- |
1633 | 1629 |
1634 } // namespace switches | 1630 } // namespace switches |
OLD | NEW |