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

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

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 // Defines all the command-line switches used by Chrome. 5 // Defines all the command-line switches used by Chrome.
6 6
7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_ 7 #ifndef CHROME_COMMON_CHROME_SWITCHES_H_
8 #define CHROME_COMMON_CHROME_SWITCHES_H_ 8 #define CHROME_COMMON_CHROME_SWITCHES_H_
9 9
10 #include "build/build_config.h" 10 #include "build/build_config.h"
(...skipping 318 matching lines...) Expand 10 before | Expand all | Expand 10 after
329 extern const char kDisableContextualSearch[]; 329 extern const char kDisableContextualSearch[];
330 extern const char kDisableZeroSuggest[]; 330 extern const char kDisableZeroSuggest[];
331 extern const char kEnableAccessibilityTabSwitcher[]; 331 extern const char kEnableAccessibilityTabSwitcher[];
332 extern const char kEnableContextualSearch[]; 332 extern const char kEnableContextualSearch[];
333 extern const char kEnableDomDistillerButtonAnimation[]; 333 extern const char kEnableDomDistillerButtonAnimation[];
334 extern const char kEnableHostedMode[]; 334 extern const char kEnableHostedMode[];
335 extern const char kEnableReaderModeToolbarIcon[]; 335 extern const char kEnableReaderModeToolbarIcon[];
336 extern const char kEnableZeroSuggestMostVisited[]; 336 extern const char kEnableZeroSuggestMostVisited[];
337 extern const char kEnableZeroSuggestMostVisitedWithoutSerp[]; 337 extern const char kEnableZeroSuggestMostVisitedWithoutSerp[];
338 extern const char kPrefetchSearchResults[]; 338 extern const char kPrefetchSearchResults[];
339 extern const char kProgressBarAnimation[];
339 #endif // defined(OS_ANDROID) 340 #endif // defined(OS_ANDROID)
340 341
341 #if defined(USE_ASH) 342 #if defined(USE_ASH)
342 extern const char kOpenAsh[]; 343 extern const char kOpenAsh[];
343 #endif 344 #endif
344 345
345 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS) 346 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_CHROMEOS)
346 extern const char kHelp[]; 347 extern const char kHelp[];
347 extern const char kHelpShort[]; 348 extern const char kHelpShort[];
348 extern const char kPasswordStore[]; 349 extern const char kPasswordStore[];
(...skipping 71 matching lines...) Expand 10 before | Expand all | Expand 10 after
420 #if defined(ENABLE_TASK_MANAGER) 421 #if defined(ENABLE_TASK_MANAGER)
421 bool NewTaskManagerEnabled(); 422 bool NewTaskManagerEnabled();
422 #endif // defined(ENABLE_TASK_MANAGER) 423 #endif // defined(ENABLE_TASK_MANAGER)
423 424
424 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 425 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
425 // alphabetical order, or in one of the ifdefs (also in order in each section). 426 // alphabetical order, or in one of the ifdefs (also in order in each section).
426 427
427 } // namespace switches 428 } // namespace switches
428 429
429 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 430 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698