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

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

Issue 2733023002: [Origin Trials] Support updates of disabled token list (Closed)
Patch Set: Address comments Created 3 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
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 #include "build/build_config.h" 9 #include "build/build_config.h"
10 #include "ppapi/features/features.h" 10 #include "ppapi/features/features.h"
(...skipping 632 matching lines...) Expand 10 before | Expand all | Expand 10 after
643 const char kOriginToForceQuicOn[] = "origin-to-force-quic-on"; 643 const char kOriginToForceQuicOn[] = "origin-to-force-quic-on";
644 644
645 // The time that a new chrome process which is delegating to an already running 645 // The time that a new chrome process which is delegating to an already running
646 // chrome process started. (See ProcessSingleton for more details.) 646 // chrome process started. (See ProcessSingleton for more details.)
647 const char kOriginalProcessStartTime[] = "original-process-start-time"; 647 const char kOriginalProcessStartTime[] = "original-process-start-time";
648 648
649 // Contains a list of feature names for which origin trial experiments should 649 // Contains a list of feature names for which origin trial experiments should
650 // be disabled. Names should be separated by "|" characters. 650 // be disabled. Names should be separated by "|" characters.
651 const char kOriginTrialDisabledFeatures[] = "origin-trial-disabled-features"; 651 const char kOriginTrialDisabledFeatures[] = "origin-trial-disabled-features";
652 652
653 // Contains a list of token signatures for which origin trial experiments should
654 // be disabled. Tokens should be separated by "|" characters.
655 const char kOriginTrialDisabledTokens[] = "origin-trial-disabled-tokens";
656
653 // Overrides the default public key for checking origin trial tokens. 657 // Overrides the default public key for checking origin trial tokens.
654 const char kOriginTrialPublicKey[] = "origin-trial-public-key"; 658 const char kOriginTrialPublicKey[] = "origin-trial-public-key";
655 659
656 // Packages an extension to a .crx installable file from a given directory. 660 // Packages an extension to a .crx installable file from a given directory.
657 const char kPackExtension[] = "pack-extension"; 661 const char kPackExtension[] = "pack-extension";
658 662
659 // Optional PEM private key to use in signing packaged .crx. 663 // Optional PEM private key to use in signing packaged .crx.
660 const char kPackExtensionKey[] = "pack-extension-key"; 664 const char kPackExtensionKey[] = "pack-extension-key";
661 665
662 // Specifies the path to the user data folder for the parent profile. 666 // Specifies the path to the user data folder for the parent profile.
(...skipping 510 matching lines...) Expand 10 before | Expand all | Expand 10 after
1173 1177
1174 // ----------------------------------------------------------------------------- 1178 // -----------------------------------------------------------------------------
1175 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. 1179 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE.
1176 // 1180 //
1177 // You were going to just dump your switches here, weren't you? Instead, please 1181 // You were going to just dump your switches here, weren't you? Instead, please
1178 // put them in alphabetical order above, or in order inside the appropriate 1182 // put them in alphabetical order above, or in order inside the appropriate
1179 // ifdef at the bottom. The order should match the header. 1183 // ifdef at the bottom. The order should match the header.
1180 // ----------------------------------------------------------------------------- 1184 // -----------------------------------------------------------------------------
1181 1185
1182 } // namespace switches 1186 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/origin_trials/chrome_origin_trial_policy.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698