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

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

Issue 1547273003: Set trusted SPDY proxy dynamically on per-profile basis (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Added net/base/test_proxy_delegate.{h,cc} Created 4 years, 10 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') | components/components_tests.gyp » ('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 #include "build/build_config.h" 9 #include "build/build_config.h"
10 10
(...skipping 1023 matching lines...) Expand 10 before | Expand all | Expand 10 after
1034 // Setting this switch also causes Sync to be set up for a supervised user. 1034 // Setting this switch also causes Sync to be set up for a supervised user.
1035 const char kSupervisedUserSyncToken[] = "managed-user-sync-token"; 1035 const char kSupervisedUserSyncToken[] = "managed-user-sync-token";
1036 1036
1037 // Frequency in Milliseconds for system log uploads. Should only be used for 1037 // Frequency in Milliseconds for system log uploads. Should only be used for
1038 // testing purposes. 1038 // testing purposes.
1039 const char kSystemLogUploadFrequency[] = "system-log-upload-frequency"; 1039 const char kSystemLogUploadFrequency[] = "system-log-upload-frequency";
1040 1040
1041 // Passes the name of the current running automated test to Chrome. 1041 // Passes the name of the current running automated test to Chrome.
1042 const char kTestName[] = "test-name"; 1042 const char kTestName[] = "test-name";
1043 1043
1044 // Disables same-origin check on HTTP resources pushed via a SPDY proxy.
1045 // The value is the host:port of the trusted proxy.
1046 const char kTrustedSpdyProxy[] = "trusted-spdy-proxy";
1047
1048 // Experimental. Shows a dialog asking the user to try chrome. This flag is to 1044 // Experimental. Shows a dialog asking the user to try chrome. This flag is to
1049 // be used only by the upgrade process. 1045 // be used only by the upgrade process.
1050 const char kTryChromeAgain[] = "try-chrome-again"; 1046 const char kTryChromeAgain[] = "try-chrome-again";
1051 1047
1052 // Overrides per-origin quota settings to unlimited storage for any 1048 // Overrides per-origin quota settings to unlimited storage for any
1053 // apps/origins. This should be used only for testing purpose. 1049 // apps/origins. This should be used only for testing purpose.
1054 const char kUnlimitedStorage[] = "unlimited-storage"; 1050 const char kUnlimitedStorage[] = "unlimited-storage";
1055 1051
1056 // Treat given (insecure) origins as secure origins. Multiple origins can be 1052 // Treat given (insecure) origins as secure origins. Multiple origins can be
1057 // supplied. Has no effect unless --user-data-dir is also supplied. 1053 // supplied. Has no effect unless --user-data-dir is also supplied.
(...skipping 338 matching lines...) Expand 10 before | Expand all | Expand 10 after
1396 1392
1397 // ----------------------------------------------------------------------------- 1393 // -----------------------------------------------------------------------------
1398 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1394 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1399 // 1395 //
1400 // You were going to just dump your switches here, weren't you? Instead, please 1396 // You were going to just dump your switches here, weren't you? Instead, please
1401 // put them in alphabetical order above, or in order inside the appropriate 1397 // put them in alphabetical order above, or in order inside the appropriate
1402 // ifdef at the bottom. The order should match the header. 1398 // ifdef at the bottom. The order should match the header.
1403 // ----------------------------------------------------------------------------- 1399 // -----------------------------------------------------------------------------
1404 1400
1405 } // namespace switches 1401 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | components/components_tests.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698