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 1382 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1393 | 1393 |
1394 #if defined(OS_ANDROID) | 1394 #if defined(OS_ANDROID) |
1395 // Pops the translate infobar if possible. | 1395 // Pops the translate infobar if possible. |
1396 const char kEnableTranslate[] = "enable-translate"; | 1396 const char kEnableTranslate[] = "enable-translate"; |
1397 | 1397 |
1398 // Uses the tablet specific UI components when available. | 1398 // Uses the tablet specific UI components when available. |
1399 const char kTabletUI[] = "tablet-ui"; | 1399 const char kTabletUI[] = "tablet-ui"; |
1400 #endif | 1400 #endif |
1401 | 1401 |
1402 #if defined(USE_ASH) | 1402 #if defined(USE_ASH) |
1403 const char kAshEnableTabScrubbing[] = "ash-enable-tab-scrubbing"; | 1403 const char kAshDisableTabScrubbing[] = "ash-disable-tab-scrubbing"; |
1404 const char kOpenAsh[] = "open-ash"; | 1404 const char kOpenAsh[] = "open-ash"; |
1405 #endif | 1405 #endif |
1406 | 1406 |
1407 #if defined(OS_CHROMEOS) | 1407 #if defined(OS_CHROMEOS) |
1408 // When wallpaper boot animation is not disabled this switch | 1408 // When wallpaper boot animation is not disabled this switch |
1409 // is used to override OOBE/sign in WebUI init type. | 1409 // is used to override OOBE/sign in WebUI init type. |
1410 // Possible values: parallel|postpone. Default: parallel. | 1410 // Possible values: parallel|postpone. Default: parallel. |
1411 const char kAshWebUIInit[] = "ash-webui-init"; | 1411 const char kAshWebUIInit[] = "ash-webui-init"; |
1412 | 1412 |
1413 // Enables switching between different cellular carriers from the UI. | 1413 // Enables switching between different cellular carriers from the UI. |
(...skipping 235 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1649 | 1649 |
1650 // ----------------------------------------------------------------------------- | 1650 // ----------------------------------------------------------------------------- |
1651 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1651 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1652 // | 1652 // |
1653 // You were going to just dump your switches here, weren't you? Instead, please | 1653 // You were going to just dump your switches here, weren't you? Instead, please |
1654 // put them in alphabetical order above, or in order inside the appropriate | 1654 // put them in alphabetical order above, or in order inside the appropriate |
1655 // ifdef at the bottom. The order should match the header. | 1655 // ifdef at the bottom. The order should match the header. |
1656 // ----------------------------------------------------------------------------- | 1656 // ----------------------------------------------------------------------------- |
1657 | 1657 |
1658 } // namespace switches | 1658 } // namespace switches |
OLD | NEW |