| 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 1437 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1448 const char kSyncEnableDeferredStartup[] = "sync-enable-deferred-startup"; | 1448 const char kSyncEnableDeferredStartup[] = "sync-enable-deferred-startup"; |
| 1449 | 1449 |
| 1450 // Enables feature to avoid unnecessary GetUpdate requests. | 1450 // Enables feature to avoid unnecessary GetUpdate requests. |
| 1451 const char kSyncEnableGetUpdateAvoidance[] = | 1451 const char kSyncEnableGetUpdateAvoidance[] = |
| 1452 "sync-enable-get-update-avoidance"; | 1452 "sync-enable-get-update-avoidance"; |
| 1453 | 1453 |
| 1454 // Enables directory support for sync filesystem | 1454 // Enables directory support for sync filesystem |
| 1455 const char kSyncfsEnableDirectoryOperation[] = | 1455 const char kSyncfsEnableDirectoryOperation[] = |
| 1456 "enable-syncfs-directory-operation"; | 1456 "enable-syncfs-directory-operation"; |
| 1457 | 1457 |
| 1458 // Enables tab dragging to create a real browser. | |
| 1459 const char kTabBrowserDragging[] = "enable-tab-browser-dragging"; | |
| 1460 | |
| 1461 // Passes the name of the current running automated test to Chrome. | 1458 // Passes the name of the current running automated test to Chrome. |
| 1462 const char kTestName[] = "test-name"; | 1459 const char kTestName[] = "test-name"; |
| 1463 | 1460 |
| 1464 // Type of the current test harness ("browser" or "ui"). | 1461 // Type of the current test harness ("browser" or "ui"). |
| 1465 const char kTestType[] = "test-type"; | 1462 const char kTestType[] = "test-type"; |
| 1466 | 1463 |
| 1467 // Tells the app to listen for and broadcast testing-related messages on IPC | 1464 // Tells the app to listen for and broadcast testing-related messages on IPC |
| 1468 // channel with the given ID. | 1465 // channel with the given ID. |
| 1469 const char kTestingChannelID[] = "testing-channel"; | 1466 const char kTestingChannelID[] = "testing-channel"; |
| 1470 | 1467 |
| (...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1684 | 1681 |
| 1685 // ----------------------------------------------------------------------------- | 1682 // ----------------------------------------------------------------------------- |
| 1686 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1683 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1687 // | 1684 // |
| 1688 // You were going to just dump your switches here, weren't you? Instead, please | 1685 // 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 | 1686 // put them in alphabetical order above, or in order inside the appropriate |
| 1690 // ifdef at the bottom. The order should match the header. | 1687 // ifdef at the bottom. The order should match the header. |
| 1691 // ----------------------------------------------------------------------------- | 1688 // ----------------------------------------------------------------------------- |
| 1692 | 1689 |
| 1693 } // namespace switches | 1690 } // namespace switches |
| OLD | NEW |