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

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

Issue 12463015: Enable <adview> tag for packaged apps. (Closed) Base URL: https://git.chromium.org/chromium/src.git@master
Patch Set: Merge fix. Created 7 years, 9 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
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/extensions/api/_permission_features.json » ('j') | 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 421 matching lines...) Expand 10 before | Expand all | Expand 10 after
432 const char kDnsLogDetails[] = "dns-log-details"; 432 const char kDnsLogDetails[] = "dns-log-details";
433 433
434 // Disables prefetching of DNS information. 434 // Disables prefetching of DNS information.
435 const char kDnsPrefetchDisable[] = "dns-prefetch-disable"; 435 const char kDnsPrefetchDisable[] = "dns-prefetch-disable";
436 436
437 // Dump any accumualted histograms to the log when browser terminates (requires 437 // Dump any accumualted histograms to the log when browser terminates (requires
438 // logging to be enabled to really do anything). Used by developers and test 438 // logging to be enabled to really do anything). Used by developers and test
439 // scripts. 439 // scripts.
440 const char kDumpHistogramsOnExit[] = "dump-histograms-on-exit"; 440 const char kDumpHistogramsOnExit[] = "dump-histograms-on-exit";
441 441
442 // Enables the <adview> tag in packaged apps.
443 const char kEnableAdview[] = "enable-adview";
444
445 // Enables specifying a "src" attribute on <adview> elements
446 // (for testing purposes, to skip the whitelist).
447 const char kEnableAdviewSrcAttribute[] = "enable-adview-src-attribute";
448
442 // Enables the experimental asynchronous DNS client. 449 // Enables the experimental asynchronous DNS client.
443 const char kEnableAsyncDns[] = "enable-async-dns"; 450 const char kEnableAsyncDns[] = "enable-async-dns";
444 451
445 // Enables the inclusion of non-standard ports when generating the Kerberos SPN 452 // Enables the inclusion of non-standard ports when generating the Kerberos SPN
446 // in response to a Negotiate challenge. See 453 // in response to a Negotiate challenge. See
447 // HttpAuthHandlerNegotiate::CreateSPN for more background. 454 // HttpAuthHandlerNegotiate::CreateSPN for more background.
448 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port"; 455 const char kEnableAuthNegotiatePort[] = "enable-auth-negotiate-port";
449 456
450 // Enables the pre- and auto-login features. When a user signs in to sync, the 457 // Enables the pre- and auto-login features. When a user signs in to sync, the
451 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a 458 // browser's cookie jar is pre-filled with GAIA cookies. When the user visits a
(...skipping 1214 matching lines...) Expand 10 before | Expand all | Expand 10 after
1666 1673
1667 // ----------------------------------------------------------------------------- 1674 // -----------------------------------------------------------------------------
1668 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1675 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1669 // 1676 //
1670 // You were going to just dump your switches here, weren't you? Instead, please 1677 // You were going to just dump your switches here, weren't you? Instead, please
1671 // put them in alphabetical order above, or in order inside the appropriate 1678 // put them in alphabetical order above, or in order inside the appropriate
1672 // ifdef at the bottom. The order should match the header. 1679 // ifdef at the bottom. The order should match the header.
1673 // ----------------------------------------------------------------------------- 1680 // -----------------------------------------------------------------------------
1674 1681
1675 } // namespace switches 1682 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/extensions/api/_permission_features.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698