| 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 1119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1130 const char kEnableDomDistillerButtonAnimation[] = | 1130 const char kEnableDomDistillerButtonAnimation[] = |
| 1131 "enable-dom-distiller-button-animation"; | 1131 "enable-dom-distiller-button-animation"; |
| 1132 | 1132 |
| 1133 // Enables chrome hosted mode for Android. | 1133 // Enables chrome hosted mode for Android. |
| 1134 const char kEnableHostedMode[] = "enable-hosted-mode"; | 1134 const char kEnableHostedMode[] = "enable-hosted-mode"; |
| 1135 | 1135 |
| 1136 // Enables a hung renderer InfoBar allowing the user to close or wait on | 1136 // Enables a hung renderer InfoBar allowing the user to close or wait on |
| 1137 // unresponsive web content. | 1137 // unresponsive web content. |
| 1138 const char kEnableHungRendererInfoBar[] = "enable-hung-renderer-infobar"; | 1138 const char kEnableHungRendererInfoBar[] = "enable-hung-renderer-infobar"; |
| 1139 | 1139 |
| 1140 // Enable Physical Web scanning. | |
| 1141 const char kEnablePhysicalWeb[] = "enable-physical-web"; | |
| 1142 | |
| 1143 // Specifies Android phone page loading progress bar animation. | 1140 // Specifies Android phone page loading progress bar animation. |
| 1144 const char kProgressBarAnimation[] = "progress-bar-animation"; | 1141 const char kProgressBarAnimation[] = "progress-bar-animation"; |
| 1145 | 1142 |
| 1146 // Enabled tab switcher in document mode. | 1143 // Enabled tab switcher in document mode. |
| 1147 const char kEnableTabSwitcherInDocumentMode[] = | 1144 const char kEnableTabSwitcherInDocumentMode[] = |
| 1148 "enable-tab-switcher-in-document-mode"; | 1145 "enable-tab-switcher-in-document-mode"; |
| 1149 | 1146 |
| 1150 // Switch to an existing tab for a suggestion opened from the New Tab Page. | 1147 // Switch to an existing tab for a suggestion opened from the New Tab Page. |
| 1151 const char kNtpSwitchToExistingTab[] = "ntp-switch-to-existing-tab"; | 1148 const char kNtpSwitchToExistingTab[] = "ntp-switch-to-existing-tab"; |
| 1152 #endif // defined(OS_ANDROID) | 1149 #endif // defined(OS_ANDROID) |
| (...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1380 | 1377 |
| 1381 // ----------------------------------------------------------------------------- | 1378 // ----------------------------------------------------------------------------- |
| 1382 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1379 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1383 // | 1380 // |
| 1384 // You were going to just dump your switches here, weren't you? Instead, please | 1381 // You were going to just dump your switches here, weren't you? Instead, please |
| 1385 // put them in alphabetical order above, or in order inside the appropriate | 1382 // put them in alphabetical order above, or in order inside the appropriate |
| 1386 // ifdef at the bottom. The order should match the header. | 1383 // ifdef at the bottom. The order should match the header. |
| 1387 // ----------------------------------------------------------------------------- | 1384 // ----------------------------------------------------------------------------- |
| 1388 | 1385 |
| 1389 } // namespace switches | 1386 } // namespace switches |
| OLD | NEW |