| 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 1347 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  1358 const char kSyncThrowUnrecoverableError[]   = "sync-throw-unrecoverable-error"; |  1358 const char kSyncThrowUnrecoverableError[]   = "sync-throw-unrecoverable-error"; | 
|  1359  |  1359  | 
|  1360  |  1360  | 
|  1361 // Tries to connect to XMPP using SSLTCP first (for testing). |  1361 // Tries to connect to XMPP using SSLTCP first (for testing). | 
|  1362 const char kSyncTrySsltcpFirstForXmpp[]     = "sync-try-ssltcp-first-for-xmpp"; |  1362 const char kSyncTrySsltcpFirstForXmpp[]     = "sync-try-ssltcp-first-for-xmpp"; | 
|  1363  |  1363  | 
|  1364 // Enables deferring sync backend initialization until user initiated changes |  1364 // Enables deferring sync backend initialization until user initiated changes | 
|  1365 // occur. |  1365 // occur. | 
|  1366 const char kSyncEnableDeferredStartup[]     = "sync-enable-deferred-startup"; |  1366 const char kSyncEnableDeferredStartup[]     = "sync-enable-deferred-startup"; | 
|  1367  |  1367  | 
 |  1368 // Enables directory support for sync filesystem | 
 |  1369 const char kSyncfsEnableDirectoryOperation[] = | 
 |  1370     "enable-syncfs-directory-operation"; | 
 |  1371  | 
|  1368 // Enables tab dragging to create a real browser. |  1372 // Enables tab dragging to create a real browser. | 
|  1369 const char kTabBrowserDragging[]            = "enable-tab-browser-dragging"; |  1373 const char kTabBrowserDragging[]            = "enable-tab-browser-dragging"; | 
|  1370  |  1374  | 
|  1371 // Enables tab capture. |  1375 // Enables tab capture. | 
|  1372 const char kTabCapture[]                    = "enable-tab-capture"; |  1376 const char kTabCapture[]                    = "enable-tab-capture"; | 
|  1373  |  1377  | 
|  1374 // Passes the name of the current running automated test to Chrome. |  1378 // Passes the name of the current running automated test to Chrome. | 
|  1375 const char kTestName[]                      = "test-name"; |  1379 const char kTestName[]                      = "test-name"; | 
|  1376  |  1380  | 
|  1377 // Runs the security test for the NaCl loader sandbox. |  1381 // Runs the security test for the NaCl loader sandbox. | 
| (...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  1684  |  1688  | 
|  1685 // ----------------------------------------------------------------------------- |  1689 // ----------------------------------------------------------------------------- | 
|  1686 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |  1690 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 
|  1687 // |  1691 // | 
|  1688 // You were going to just dump your switches here, weren't you? Instead, please |  1692 // You were going to just dump your switches here, weren't you? Instead, please | 
|  1689 // put them in alphabetical order above, or in order inside the appropriate |  1693 // put them in alphabetical order above, or in order inside the appropriate | 
|  1690 // ifdef at the bottom. The order should match the header. |  1694 // ifdef at the bottom. The order should match the header. | 
|  1691 // ----------------------------------------------------------------------------- |  1695 // ----------------------------------------------------------------------------- | 
|  1692  |  1696  | 
|  1693 }  // namespace switches |  1697 }  // namespace switches | 
| OLD | NEW |