| 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 1354 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1365 const char kSyncTrySsltcpFirstForXmpp[] = "sync-try-ssltcp-first-for-xmpp"; | 1365 const char kSyncTrySsltcpFirstForXmpp[] = "sync-try-ssltcp-first-for-xmpp"; |
| 1366 | 1366 |
| 1367 // Enables deferring sync backend initialization until user initiated changes | 1367 // Enables deferring sync backend initialization until user initiated changes |
| 1368 // occur. | 1368 // occur. |
| 1369 const char kSyncEnableDeferredStartup[] = "sync-enable-deferred-startup"; | 1369 const char kSyncEnableDeferredStartup[] = "sync-enable-deferred-startup"; |
| 1370 | 1370 |
| 1371 // Disables use of OAuth2 token in sync components and reverts behavior to | 1371 // Disables use of OAuth2 token in sync components and reverts behavior to |
| 1372 // ClientLogin token. | 1372 // ClientLogin token. |
| 1373 const char kSyncDisableOAuth2Token[] = "sync-disable-oauth2-token"; | 1373 const char kSyncDisableOAuth2Token[] = "sync-disable-oauth2-token"; |
| 1374 | 1374 |
| 1375 // Enables feature to avoid unnecessary GetUpdate requests. |
| 1376 const char kSyncEnableGetUpdateAvoidance[] = |
| 1377 "sync-enable-get-update-avoidance"; |
| 1378 |
| 1375 // Enables directory support for sync filesystem | 1379 // Enables directory support for sync filesystem |
| 1376 const char kSyncfsEnableDirectoryOperation[] = | 1380 const char kSyncfsEnableDirectoryOperation[] = |
| 1377 "enable-syncfs-directory-operation"; | 1381 "enable-syncfs-directory-operation"; |
| 1378 | 1382 |
| 1379 // Enables tab dragging to create a real browser. | 1383 // Enables tab dragging to create a real browser. |
| 1380 const char kTabBrowserDragging[] = "enable-tab-browser-dragging"; | 1384 const char kTabBrowserDragging[] = "enable-tab-browser-dragging"; |
| 1381 | 1385 |
| 1382 // Enables tab capture. | 1386 // Enables tab capture. |
| 1383 const char kTabCapture[] = "enable-tab-capture"; | 1387 const char kTabCapture[] = "enable-tab-capture"; |
| 1384 | 1388 |
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1595 | 1599 |
| 1596 // ----------------------------------------------------------------------------- | 1600 // ----------------------------------------------------------------------------- |
| 1597 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1601 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1598 // | 1602 // |
| 1599 // You were going to just dump your switches here, weren't you? Instead, please | 1603 // You were going to just dump your switches here, weren't you? Instead, please |
| 1600 // put them in alphabetical order above, or in order inside the appropriate | 1604 // put them in alphabetical order above, or in order inside the appropriate |
| 1601 // ifdef at the bottom. The order should match the header. | 1605 // ifdef at the bottom. The order should match the header. |
| 1602 // ----------------------------------------------------------------------------- | 1606 // ----------------------------------------------------------------------------- |
| 1603 | 1607 |
| 1604 } // namespace switches | 1608 } // namespace switches |
| OLD | NEW |