| 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 1288 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1299 const char kSyncEnableGetUpdateAvoidance[] = | 1299 const char kSyncEnableGetUpdateAvoidance[] = |
| 1300 "sync-enable-get-update-avoidance"; | 1300 "sync-enable-get-update-avoidance"; |
| 1301 | 1301 |
| 1302 // Enables directory support for sync filesystem | 1302 // Enables directory support for sync filesystem |
| 1303 const char kSyncfsEnableDirectoryOperation[] = | 1303 const char kSyncfsEnableDirectoryOperation[] = |
| 1304 "enable-syncfs-directory-operation"; | 1304 "enable-syncfs-directory-operation"; |
| 1305 | 1305 |
| 1306 // Passes the name of the current running automated test to Chrome. | 1306 // Passes the name of the current running automated test to Chrome. |
| 1307 const char kTestName[] = "test-name"; | 1307 const char kTestName[] = "test-name"; |
| 1308 | 1308 |
| 1309 // Tells the app to listen for and broadcast testing-related messages on IPC | |
| 1310 // channel with the given ID. | |
| 1311 const char kTestingChannelID[] = "testing-channel"; | |
| 1312 | |
| 1313 // Disables same-origin check on HTTP resources pushed via a SPDY proxy. | 1309 // Disables same-origin check on HTTP resources pushed via a SPDY proxy. |
| 1314 // The value is the host:port of the trusted proxy. | 1310 // The value is the host:port of the trusted proxy. |
| 1315 const char kTrustedSpdyProxy[] = "trusted-spdy-proxy"; | 1311 const char kTrustedSpdyProxy[] = "trusted-spdy-proxy"; |
| 1316 | 1312 |
| 1317 // Experimental. Shows a dialog asking the user to try chrome. This flag is to | 1313 // Experimental. Shows a dialog asking the user to try chrome. This flag is to |
| 1318 // be used only by the upgrade process. | 1314 // be used only by the upgrade process. |
| 1319 const char kTryChromeAgain[] = "try-chrome-again"; | 1315 const char kTryChromeAgain[] = "try-chrome-again"; |
| 1320 | 1316 |
| 1321 // Uninstalls an extension with the specified extension id. | 1317 // Uninstalls an extension with the specified extension id. |
| 1322 const char kUninstallExtension[] = "uninstall-extension"; | 1318 const char kUninstallExtension[] = "uninstall-extension"; |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1530 | 1526 |
| 1531 // ----------------------------------------------------------------------------- | 1527 // ----------------------------------------------------------------------------- |
| 1532 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1528 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1533 // | 1529 // |
| 1534 // You were going to just dump your switches here, weren't you? Instead, please | 1530 // You were going to just dump your switches here, weren't you? Instead, please |
| 1535 // put them in alphabetical order above, or in order inside the appropriate | 1531 // put them in alphabetical order above, or in order inside the appropriate |
| 1536 // ifdef at the bottom. The order should match the header. | 1532 // ifdef at the bottom. The order should match the header. |
| 1537 // ----------------------------------------------------------------------------- | 1533 // ----------------------------------------------------------------------------- |
| 1538 | 1534 |
| 1539 } // namespace switches | 1535 } // namespace switches |
| OLD | NEW |