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 #include "build/build_config.h" | 9 #include "build/build_config.h" |
10 | 10 |
(...skipping 1115 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1126 // Enables chrome hosted mode for Android. | 1126 // Enables chrome hosted mode for Android. |
1127 const char kEnableHostedMode[] = "enable-hosted-mode"; | 1127 const char kEnableHostedMode[] = "enable-hosted-mode"; |
1128 | 1128 |
1129 // Enables a hung renderer InfoBar allowing the user to close or wait on | 1129 // Enables a hung renderer InfoBar allowing the user to close or wait on |
1130 // unresponsive web content. | 1130 // unresponsive web content. |
1131 const char kEnableHungRendererInfoBar[] = "enable-hung-renderer-infobar"; | 1131 const char kEnableHungRendererInfoBar[] = "enable-hung-renderer-infobar"; |
1132 | 1132 |
1133 // Specifies Android phone page loading progress bar animation. | 1133 // Specifies Android phone page loading progress bar animation. |
1134 const char kProgressBarAnimation[] = "progress-bar-animation"; | 1134 const char kProgressBarAnimation[] = "progress-bar-animation"; |
1135 | 1135 |
| 1136 // Enable the experimental Intent handling prototype. |
| 1137 const char kEnableHerbPrototype[] = "enable-herb-prototype"; |
| 1138 |
1136 // Enabled tab switcher in document mode. | 1139 // Enabled tab switcher in document mode. |
1137 const char kEnableTabSwitcherInDocumentMode[] = | 1140 const char kEnableTabSwitcherInDocumentMode[] = |
1138 "enable-tab-switcher-in-document-mode"; | 1141 "enable-tab-switcher-in-document-mode"; |
1139 | 1142 |
1140 // Switch to an existing tab for a suggestion opened from the New Tab Page. | 1143 // Switch to an existing tab for a suggestion opened from the New Tab Page. |
1141 const char kNtpSwitchToExistingTab[] = "ntp-switch-to-existing-tab"; | 1144 const char kNtpSwitchToExistingTab[] = "ntp-switch-to-existing-tab"; |
1142 #endif // defined(OS_ANDROID) | 1145 #endif // defined(OS_ANDROID) |
1143 | 1146 |
1144 #if defined(USE_ASH) | 1147 #if defined(USE_ASH) |
1145 const char kOpenAsh[] = "open-ash"; | 1148 const char kOpenAsh[] = "open-ash"; |
(...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1396 | 1399 |
1397 // ----------------------------------------------------------------------------- | 1400 // ----------------------------------------------------------------------------- |
1398 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1401 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
1399 // | 1402 // |
1400 // You were going to just dump your switches here, weren't you? Instead, please | 1403 // You were going to just dump your switches here, weren't you? Instead, please |
1401 // put them in alphabetical order above, or in order inside the appropriate | 1404 // put them in alphabetical order above, or in order inside the appropriate |
1402 // ifdef at the bottom. The order should match the header. | 1405 // ifdef at the bottom. The order should match the header. |
1403 // ----------------------------------------------------------------------------- | 1406 // ----------------------------------------------------------------------------- |
1404 | 1407 |
1405 } // namespace switches | 1408 } // namespace switches |
OLD | NEW |