| 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 1363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1374 // Specifies a custom URL for fetching plug-ins metadata. Used for testing. | 1374 // Specifies a custom URL for fetching plug-ins metadata. Used for testing. |
| 1375 const char kPluginsMetadataServerURL[] = "plugins-metadata-server-url"; | 1375 const char kPluginsMetadataServerURL[] = "plugins-metadata-server-url"; |
| 1376 #endif | 1376 #endif |
| 1377 | 1377 |
| 1378 #if defined(OS_ANDROID) | 1378 #if defined(OS_ANDROID) |
| 1379 // Use the tablet specific UI components when available. | 1379 // Use the tablet specific UI components when available. |
| 1380 const char kTabletUI[] = "tablet-ui"; | 1380 const char kTabletUI[] = "tablet-ui"; |
| 1381 #endif | 1381 #endif |
| 1382 | 1382 |
| 1383 #if defined(USE_ASH) | 1383 #if defined(USE_ASH) |
| 1384 const char kAshEnableTabScrubbing[] = "ash-enable-tab-scrubbing"; | 1384 const char kAshDisableTabScrubbing[] = "ash-disable-tab-scrubbing"; |
| 1385 #endif | 1385 #endif |
| 1386 | 1386 |
| 1387 #if defined(OS_CHROMEOS) | 1387 #if defined(OS_CHROMEOS) |
| 1388 // When wallpaper boot animation is not disabled this switch | 1388 // When wallpaper boot animation is not disabled this switch |
| 1389 // is used to override OOBE/sign in WebUI init type. | 1389 // is used to override OOBE/sign in WebUI init type. |
| 1390 // Possible values: parallel|postpone. Default: parallel. | 1390 // Possible values: parallel|postpone. Default: parallel. |
| 1391 const char kAshWebUIInit[] = "ash-webui-init"; | 1391 const char kAshWebUIInit[] = "ash-webui-init"; |
| 1392 | 1392 |
| 1393 // Enables switching between different cellular carriers from the UI. | 1393 // Enables switching between different cellular carriers from the UI. |
| 1394 const char kEnableCarrierSwitching[] = "enable-carrier-switching"; | 1394 const char kEnableCarrierSwitching[] = "enable-carrier-switching"; |
| (...skipping 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1621 | 1621 |
| 1622 // ----------------------------------------------------------------------------- | 1622 // ----------------------------------------------------------------------------- |
| 1623 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1623 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1624 // | 1624 // |
| 1625 // You were going to just dump your switches here, weren't you? Instead, please | 1625 // You were going to just dump your switches here, weren't you? Instead, please |
| 1626 // put them in alphabetical order above, or in order inside the appropriate | 1626 // put them in alphabetical order above, or in order inside the appropriate |
| 1627 // ifdef at the bottom. The order should match the header. | 1627 // ifdef at the bottom. The order should match the header. |
| 1628 // ----------------------------------------------------------------------------- | 1628 // ----------------------------------------------------------------------------- |
| 1629 | 1629 |
| 1630 } // namespace switches | 1630 } // namespace switches |
| OLD | NEW |