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