Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(79)

Side by Side Diff: chrome/common/chrome_switches.cc

Issue 1256343004: [Android] Add phone progress bar animation behind a flag. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: string update Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698