| 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 1369 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1380 const char kSyncThrowUnrecoverableError[] = "sync-throw-unrecoverable-error"; | 1380 const char kSyncThrowUnrecoverableError[] = "sync-throw-unrecoverable-error"; |
| 1381 | 1381 |
| 1382 | 1382 |
| 1383 // Tries to connect to XMPP using SSLTCP first (for testing). | 1383 // Tries to connect to XMPP using SSLTCP first (for testing). |
| 1384 const char kSyncTrySsltcpFirstForXmpp[] = "sync-try-ssltcp-first-for-xmpp"; | 1384 const char kSyncTrySsltcpFirstForXmpp[] = "sync-try-ssltcp-first-for-xmpp"; |
| 1385 | 1385 |
| 1386 // Enables deferring sync backend initialization until user initiated changes | 1386 // Enables deferring sync backend initialization until user initiated changes |
| 1387 // occur. | 1387 // occur. |
| 1388 const char kSyncEnableDeferredStartup[] = "sync-enable-deferred-startup"; | 1388 const char kSyncEnableDeferredStartup[] = "sync-enable-deferred-startup"; |
| 1389 | 1389 |
| 1390 // Disables use of OAuth2 token in sync components and reverts behavior to |
| 1391 // ClientLogin token. |
| 1392 const char kSyncDisableOAuth2Token[] = "sync-disable-oauth2-token"; |
| 1393 |
| 1390 // Enables directory support for sync filesystem | 1394 // Enables directory support for sync filesystem |
| 1391 const char kSyncfsEnableDirectoryOperation[] = | 1395 const char kSyncfsEnableDirectoryOperation[] = |
| 1392 "enable-syncfs-directory-operation"; | 1396 "enable-syncfs-directory-operation"; |
| 1393 | 1397 |
| 1394 // Enables tab dragging to create a real browser. | 1398 // Enables tab dragging to create a real browser. |
| 1395 const char kTabBrowserDragging[] = "enable-tab-browser-dragging"; | 1399 const char kTabBrowserDragging[] = "enable-tab-browser-dragging"; |
| 1396 | 1400 |
| 1397 // Enables tab capture. | 1401 // Enables tab capture. |
| 1398 const char kTabCapture[] = "enable-tab-capture"; | 1402 const char kTabCapture[] = "enable-tab-capture"; |
| 1399 | 1403 |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1607 | 1611 |
| 1608 // ----------------------------------------------------------------------------- | 1612 // ----------------------------------------------------------------------------- |
| 1609 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1613 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1610 // | 1614 // |
| 1611 // You were going to just dump your switches here, weren't you? Instead, please | 1615 // You were going to just dump your switches here, weren't you? Instead, please |
| 1612 // put them in alphabetical order above, or in order inside the appropriate | 1616 // put them in alphabetical order above, or in order inside the appropriate |
| 1613 // ifdef at the bottom. The order should match the header. | 1617 // ifdef at the bottom. The order should match the header. |
| 1614 // ----------------------------------------------------------------------------- | 1618 // ----------------------------------------------------------------------------- |
| 1615 | 1619 |
| 1616 } // namespace switches | 1620 } // namespace switches |
| OLD | NEW |