| 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 1333 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1344 const char kSyncTrySsltcpFirstForXmpp[] = "sync-try-ssltcp-first-for-xmpp"; | 1344 const char kSyncTrySsltcpFirstForXmpp[] = "sync-try-ssltcp-first-for-xmpp"; |
| 1345 | 1345 |
| 1346 // Enables deferring sync backend initialization until user initiated changes | 1346 // Enables deferring sync backend initialization until user initiated changes |
| 1347 // occur. | 1347 // occur. |
| 1348 const char kSyncEnableDeferredStartup[] = "sync-enable-deferred-startup"; | 1348 const char kSyncEnableDeferredStartup[] = "sync-enable-deferred-startup"; |
| 1349 | 1349 |
| 1350 // Disables use of OAuth2 token in sync components and reverts behavior to | 1350 // Disables use of OAuth2 token in sync components and reverts behavior to |
| 1351 // ClientLogin token. | 1351 // ClientLogin token. |
| 1352 const char kSyncDisableOAuth2Token[] = "sync-disable-oauth2-token"; | 1352 const char kSyncDisableOAuth2Token[] = "sync-disable-oauth2-token"; |
| 1353 | 1353 |
| 1354 // Enables feature to avoid unnecessary GetUpdate requests. |
| 1355 const char kSyncEnableGetUpdateAvoidance[] = |
| 1356 "sync-enable-get-update-avoidance"; |
| 1357 |
| 1354 // Enables directory support for sync filesystem | 1358 // Enables directory support for sync filesystem |
| 1355 const char kSyncfsEnableDirectoryOperation[] = | 1359 const char kSyncfsEnableDirectoryOperation[] = |
| 1356 "enable-syncfs-directory-operation"; | 1360 "enable-syncfs-directory-operation"; |
| 1357 | 1361 |
| 1358 // Enables tab dragging to create a real browser. | 1362 // Enables tab dragging to create a real browser. |
| 1359 const char kTabBrowserDragging[] = "enable-tab-browser-dragging"; | 1363 const char kTabBrowserDragging[] = "enable-tab-browser-dragging"; |
| 1360 | 1364 |
| 1361 // Enables tab capture. | 1365 // Enables tab capture. |
| 1362 const char kTabCapture[] = "enable-tab-capture"; | 1366 const char kTabCapture[] = "enable-tab-capture"; |
| 1363 | 1367 |
| (...skipping 218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1582 | 1586 |
| 1583 // ----------------------------------------------------------------------------- | 1587 // ----------------------------------------------------------------------------- |
| 1584 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1588 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1585 // | 1589 // |
| 1586 // You were going to just dump your switches here, weren't you? Instead, please | 1590 // You were going to just dump your switches here, weren't you? Instead, please |
| 1587 // put them in alphabetical order above, or in order inside the appropriate | 1591 // put them in alphabetical order above, or in order inside the appropriate |
| 1588 // ifdef at the bottom. The order should match the header. | 1592 // ifdef at the bottom. The order should match the header. |
| 1589 // ----------------------------------------------------------------------------- | 1593 // ----------------------------------------------------------------------------- |
| 1590 | 1594 |
| 1591 } // namespace switches | 1595 } // namespace switches |
| OLD | NEW |