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 229533002: App install alerts: Disable on all channels for M35 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Turn off entirely 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
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 1272 matching lines...) Expand 10 before | Expand all | Expand 10 after
1283 // Uses WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is to 1283 // Uses WinHTTP to fetch and evaluate PAC scripts. Otherwise the default is to
1284 // use Chromium's network stack to fetch, and V8 to evaluate. 1284 // use Chromium's network stack to fetch, and V8 to evaluate.
1285 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver"; 1285 const char kWinHttpProxyResolver[] = "winhttp-proxy-resolver";
1286 1286
1287 #if defined(ENABLE_PLUGIN_INSTALLATION) 1287 #if defined(ENABLE_PLUGIN_INSTALLATION)
1288 // Specifies a custom URL for fetching plug-ins metadata. Used for testing. 1288 // Specifies a custom URL for fetching plug-ins metadata. Used for testing.
1289 const char kPluginsMetadataServerURL[] = "plugins-metadata-server-url"; 1289 const char kPluginsMetadataServerURL[] = "plugins-metadata-server-url";
1290 #endif 1290 #endif
1291 1291
1292 #if defined(OS_ANDROID) 1292 #if defined(OS_ANDROID)
1293 // Disables the app banner <meta> tag.
1294 const char kDisableAppBanners[] = "disable-app-banners";
1295
1296 // Disables support for playing videos on Chromecast devices. 1293 // Disables support for playing videos on Chromecast devices.
1297 const char kDisableCast[] = "disable-cast"; 1294 const char kDisableCast[] = "disable-cast";
1298 1295
1299 // Disables the new NTP. 1296 // Disables the new NTP.
1300 const char kDisableNewNTP[] = "disable-new-ntp"; 1297 const char kDisableNewNTP[] = "disable-new-ntp";
1301 1298
1302 // Disables zero suggest experiment on Dev channel. 1299 // Disables zero suggest experiment on Dev channel.
1303 const char kDisableZeroSuggest[] = "disable-zero-suggest"; 1300 const char kDisableZeroSuggest[] = "disable-zero-suggest";
1304 1301
1305 // Enable the accessibility tab switcher. 1302 // Enable the accessibility tab switcher.
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after
1442 1439
1443 // ----------------------------------------------------------------------------- 1440 // -----------------------------------------------------------------------------
1444 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1441 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1445 // 1442 //
1446 // You were going to just dump your switches here, weren't you? Instead, please 1443 // You were going to just dump your switches here, weren't you? Instead, please
1447 // put them in alphabetical order above, or in order inside the appropriate 1444 // put them in alphabetical order above, or in order inside the appropriate
1448 // ifdef at the bottom. The order should match the header. 1445 // ifdef at the bottom. The order should match the header.
1449 // ----------------------------------------------------------------------------- 1446 // -----------------------------------------------------------------------------
1450 1447
1451 } // namespace switches 1448 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698