| 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 1305 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1316 const char kSyncTabFavicons[] = "sync-tab-favicons"; | 1316 const char kSyncTabFavicons[] = "sync-tab-favicons"; |
| 1317 | 1317 |
| 1318 // Makes the sync code to throw an unrecoverable error after initialization. | 1318 // Makes the sync code to throw an unrecoverable error after initialization. |
| 1319 // Useful for testing unrecoverable error scenarios. | 1319 // Useful for testing unrecoverable error scenarios. |
| 1320 const char kSyncThrowUnrecoverableError[] = "sync-throw-unrecoverable-error"; | 1320 const char kSyncThrowUnrecoverableError[] = "sync-throw-unrecoverable-error"; |
| 1321 | 1321 |
| 1322 | 1322 |
| 1323 // Tries to connect to XMPP using SSLTCP first (for testing). | 1323 // Tries to connect to XMPP using SSLTCP first (for testing). |
| 1324 const char kSyncTrySsltcpFirstForXmpp[] = "sync-try-ssltcp-first-for-xmpp"; | 1324 const char kSyncTrySsltcpFirstForXmpp[] = "sync-try-ssltcp-first-for-xmpp"; |
| 1325 | 1325 |
| 1326 // Enables deferring sync backend initialization until user initiated changes |
| 1327 // occur. |
| 1328 const char kSyncEnableDeferredStartup[] = "sync-enable-deferred-startup"; |
| 1329 |
| 1326 // Enables tab dragging to create a real browser. | 1330 // Enables tab dragging to create a real browser. |
| 1327 const char kTabBrowserDragging[] = "enable-tab-browser-dragging"; | 1331 const char kTabBrowserDragging[] = "enable-tab-browser-dragging"; |
| 1328 | 1332 |
| 1329 // Enables tab capture. | 1333 // Enables tab capture. |
| 1330 const char kTabCapture[] = "enable-tab-capture"; | 1334 const char kTabCapture[] = "enable-tab-capture"; |
| 1331 | 1335 |
| 1332 // Passes the name of the current running automated test to Chrome. | 1336 // Passes the name of the current running automated test to Chrome. |
| 1333 const char kTestName[] = "test-name"; | 1337 const char kTestName[] = "test-name"; |
| 1334 | 1338 |
| 1335 // Runs the security test for the NaCl loader sandbox. | 1339 // Runs the security test for the NaCl loader sandbox. |
| (...skipping 334 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1670 | 1674 |
| 1671 // ----------------------------------------------------------------------------- | 1675 // ----------------------------------------------------------------------------- |
| 1672 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1676 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1673 // | 1677 // |
| 1674 // You were going to just dump your switches here, weren't you? Instead, please | 1678 // You were going to just dump your switches here, weren't you? Instead, please |
| 1675 // put them in alphabetical order above, or in order inside the appropriate | 1679 // put them in alphabetical order above, or in order inside the appropriate |
| 1676 // ifdef at the bottom. The order should match the header. | 1680 // ifdef at the bottom. The order should match the header. |
| 1677 // ----------------------------------------------------------------------------- | 1681 // ----------------------------------------------------------------------------- |
| 1678 | 1682 |
| 1679 } // namespace switches | 1683 } // namespace switches |
| OLD | NEW |