| 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 1197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1208 "enable-zero-suggest-most-visited"; | 1208 "enable-zero-suggest-most-visited"; |
| 1209 | 1209 |
| 1210 // Enable zero suggest functionality on Dev channel, showing most visited | 1210 // Enable zero suggest functionality on Dev channel, showing most visited |
| 1211 // sites on non-search-result pages as default suggestions. | 1211 // sites on non-search-result pages as default suggestions. |
| 1212 const char kEnableZeroSuggestMostVisitedWithoutSerp[] = | 1212 const char kEnableZeroSuggestMostVisitedWithoutSerp[] = |
| 1213 "enable-zero-suggest-most-visited-without-serp"; | 1213 "enable-zero-suggest-most-visited-without-serp"; |
| 1214 | 1214 |
| 1215 // Triggers prerendering of search base page to prefetch results for the typed | 1215 // Triggers prerendering of search base page to prefetch results for the typed |
| 1216 // omnibox query. Only has an effect when prerender is enabled. | 1216 // omnibox query. Only has an effect when prerender is enabled. |
| 1217 const char kPrefetchSearchResults[] = "prefetch-search-results"; | 1217 const char kPrefetchSearchResults[] = "prefetch-search-results"; |
| 1218 |
| 1219 // Specifies Android phone page loading progress bar animation. |
| 1220 const char kProgressBarAnimation[] = "progress-bar-animation"; |
| 1218 #endif // defined(OS_ANDROID) | 1221 #endif // defined(OS_ANDROID) |
| 1219 | 1222 |
| 1220 #if defined(USE_ASH) | 1223 #if defined(USE_ASH) |
| 1221 const char kOpenAsh[] = "open-ash"; | 1224 const char kOpenAsh[] = "open-ash"; |
| 1222 #endif | 1225 #endif |
| 1223 | 1226 |
| 1224 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) | 1227 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) |
| 1225 // These flags show the man page on Linux. They are equivalent to each | 1228 // These flags show the man page on Linux. They are equivalent to each |
| 1226 // other. | 1229 // other. |
| 1227 const char kHelp[] = "help"; | 1230 const char kHelp[] = "help"; |
| (...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1413 | 1416 |
| 1414 // ----------------------------------------------------------------------------- | 1417 // ----------------------------------------------------------------------------- |
| 1415 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. | 1418 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. |
| 1416 // | 1419 // |
| 1417 // You were going to just dump your switches here, weren't you? Instead, please | 1420 // You were going to just dump your switches here, weren't you? Instead, please |
| 1418 // put them in alphabetical order above, or in order inside the appropriate | 1421 // put them in alphabetical order above, or in order inside the appropriate |
| 1419 // ifdef at the bottom. The order should match the header. | 1422 // ifdef at the bottom. The order should match the header. |
| 1420 // ----------------------------------------------------------------------------- | 1423 // ----------------------------------------------------------------------------- |
| 1421 | 1424 |
| 1422 } // namespace switches | 1425 } // namespace switches |
| OLD | NEW |