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

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

Issue 229533002: App install alerts: Disable on all channels for M35 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 6 years, 8 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 | Annotate | Revision Log
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 360 matching lines...) Expand 10 before | Expand all | Expand 10 after
371 371
372 #if defined(ENABLE_PLUGIN_INSTALLATION) 372 #if defined(ENABLE_PLUGIN_INSTALLATION)
373 extern const char kPluginsMetadataServerURL[]; 373 extern const char kPluginsMetadataServerURL[];
374 #endif 374 #endif
375 375
376 #if defined(OS_ANDROID) || defined(OS_IOS) 376 #if defined(OS_ANDROID) || defined(OS_IOS)
377 extern const char kEnableSpdyProxyAuth[]; 377 extern const char kEnableSpdyProxyAuth[];
378 #endif // defined(OS_ANDROID) || defined(OS_IOS) 378 #endif // defined(OS_ANDROID) || defined(OS_IOS)
379 379
380 #if defined(OS_ANDROID) 380 #if defined(OS_ANDROID)
381 extern const char kDisableAppBanners[];
382 extern const char kDisableCast[]; 381 extern const char kDisableCast[];
383 extern const char kDisableNewNTP[]; 382 extern const char kDisableNewNTP[];
384 extern const char kDisableZeroSuggest[]; 383 extern const char kDisableZeroSuggest[];
385 extern const char kEnableAccessibilityTabSwitcher[]; 384 extern const char kEnableAccessibilityTabSwitcher[];
385 extern const char kEnableAppInstallAlerts[];
386 extern const char kEnableContextualSearch[]; 386 extern const char kEnableContextualSearch[];
387 extern const char kEnableNewNTP[]; 387 extern const char kEnableNewNTP[];
388 extern const char kEnableZeroSuggestEtherSerp[]; 388 extern const char kEnableZeroSuggestEtherSerp[];
389 extern const char kEnableZeroSuggestEtherNoSerp[]; 389 extern const char kEnableZeroSuggestEtherNoSerp[];
390 extern const char kEnableZeroSuggestMostVisited[]; 390 extern const char kEnableZeroSuggestMostVisited[];
391 extern const char kEnableZeroSuggestPersonalized[]; 391 extern const char kEnableZeroSuggestPersonalized[];
392 extern const char kEnableInstantSearchClicks[]; 392 extern const char kEnableInstantSearchClicks[];
393 #endif 393 #endif
394 394
395 #if defined(USE_ASH) 395 #if defined(USE_ASH)
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
438 #else 438 #else
439 extern const char kEnablePrintPreview[]; 439 extern const char kEnablePrintPreview[];
440 #endif 440 #endif
441 441
442 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in 442 // DON'T ADD RANDOM STUFF HERE. Put it in the main section above in
443 // alphabetical order, or in one of the ifdefs (also in order in each section). 443 // alphabetical order, or in one of the ifdefs (also in order in each section).
444 444
445 } // namespace switches 445 } // namespace switches
446 446
447 #endif // CHROME_COMMON_CHROME_SWITCHES_H_ 447 #endif // CHROME_COMMON_CHROME_SWITCHES_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698