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 1364 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1375 const char kSyncEnableGetUpdateAvoidance[] = | 1375 const char kSyncEnableGetUpdateAvoidance[] = |
1376 "sync-enable-get-update-avoidance"; | 1376 "sync-enable-get-update-avoidance"; |
1377 | 1377 |
1378 // Enables directory support for sync filesystem | 1378 // Enables directory support for sync filesystem |
1379 const char kSyncfsEnableDirectoryOperation[] = | 1379 const char kSyncfsEnableDirectoryOperation[] = |
1380 "enable-syncfs-directory-operation"; | 1380 "enable-syncfs-directory-operation"; |
1381 | 1381 |
1382 // Enables tab dragging to create a real browser. | 1382 // Enables tab dragging to create a real browser. |
1383 const char kTabBrowserDragging[] = "enable-tab-browser-dragging"; | 1383 const char kTabBrowserDragging[] = "enable-tab-browser-dragging"; |
1384 | 1384 |
1385 // Enables tab capture. | |
1386 const char kTabCapture[] = "enable-tab-capture"; | |
1387 | |
1388 // Passes the name of the current running automated test to Chrome. | 1385 // Passes the name of the current running automated test to Chrome. |
1389 const char kTestName[] = "test-name"; | 1386 const char kTestName[] = "test-name"; |
1390 | 1387 |
1391 // Type of the current test harness ("browser" or "ui"). | 1388 // Type of the current test harness ("browser" or "ui"). |
1392 const char kTestType[] = "test-type"; | 1389 const char kTestType[] = "test-type"; |
1393 | 1390 |
1394 // Tells the app to listen for and broadcast testing-related messages on IPC | 1391 // Tells the app to listen for and broadcast testing-related messages on IPC |
1395 // channel with the given ID. | 1392 // channel with the given ID. |
1396 const char kTestingChannelID[] = "testing-channel"; | 1393 const char kTestingChannelID[] = "testing-channel"; |
1397 | 1394 |
(...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1601 | 1598 |
1602 // ----------------------------------------------------------------------------- | 1599 // ----------------------------------------------------------------------------- |
1603 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1600 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1604 // | 1601 // |
1605 // You were going to just dump your switches here, weren't you? Instead, please | 1602 // You were going to just dump your switches here, weren't you? Instead, please |
1606 // put them in alphabetical order above, or in order inside the appropriate | 1603 // put them in alphabetical order above, or in order inside the appropriate |
1607 // ifdef at the bottom. The order should match the header. | 1604 // ifdef at the bottom. The order should match the header. |
1608 // ----------------------------------------------------------------------------- | 1605 // ----------------------------------------------------------------------------- |
1609 | 1606 |
1610 } // namespace switches | 1607 } // namespace switches |
OLD | NEW |