| 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 1134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1145 | 1145 |
| 1146 // Enable Physical Web scanning. | 1146 // Enable Physical Web scanning. |
| 1147 const char kEnablePhysicalWeb[] = "enable-physical-web"; | 1147 const char kEnablePhysicalWeb[] = "enable-physical-web"; |
| 1148 | 1148 |
| 1149 // Specifies Android phone page loading progress bar animation. | 1149 // Specifies Android phone page loading progress bar animation. |
| 1150 const char kProgressBarAnimation[] = "progress-bar-animation"; | 1150 const char kProgressBarAnimation[] = "progress-bar-animation"; |
| 1151 | 1151 |
| 1152 // Enabled tab switcher in document mode. | 1152 // Enabled tab switcher in document mode. |
| 1153 const char kEnableTabSwitcherInDocumentMode[] = | 1153 const char kEnableTabSwitcherInDocumentMode[] = |
| 1154 "enable-tab-switcher-in-document-mode"; | 1154 "enable-tab-switcher-in-document-mode"; |
| 1155 |
| 1156 // Switch to an existing tab for a suggestion opened from the New Tab Page. |
| 1157 const char kNtpSwitchToExistingTab[] = "ntp-switch-to-existing-tab"; |
| 1155 #endif // defined(OS_ANDROID) | 1158 #endif // defined(OS_ANDROID) |
| 1156 | 1159 |
| 1157 #if defined(USE_ASH) | 1160 #if defined(USE_ASH) |
| 1158 const char kOpenAsh[] = "open-ash"; | 1161 const char kOpenAsh[] = "open-ash"; |
| 1159 #endif | 1162 #endif |
| 1160 | 1163 |
| 1161 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) | 1164 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) |
| 1162 // These flags show the man page on Linux. They are equivalent to each | 1165 // These flags show the man page on Linux. They are equivalent to each |
| 1163 // other. | 1166 // other. |
| 1164 const char kHelp[] = "help"; | 1167 const char kHelp[] = "help"; |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1389 | 1392 |
| 1390 // ----------------------------------------------------------------------------- | 1393 // ----------------------------------------------------------------------------- |
| 1391 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1394 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1392 // | 1395 // |
| 1393 // You were going to just dump your switches here, weren't you? Instead, please | 1396 // You were going to just dump your switches here, weren't you? Instead, please |
| 1394 // put them in alphabetical order above, or in order inside the appropriate | 1397 // put them in alphabetical order above, or in order inside the appropriate |
| 1395 // ifdef at the bottom. The order should match the header. | 1398 // ifdef at the bottom. The order should match the header. |
| 1396 // ----------------------------------------------------------------------------- | 1399 // ----------------------------------------------------------------------------- |
| 1397 | 1400 |
| 1398 } // namespace switches | 1401 } // namespace switches |
| OLD | NEW |