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

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: Created 4 years, 11 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 10
(...skipping 1029 matching lines...) Expand 10 before | Expand all | Expand 10 after
1040 // Setting this switch also causes Sync to be set up for a supervised user. 1040 // Setting this switch also causes Sync to be set up for a supervised user.
1041 const char kSupervisedUserSyncToken[] = "managed-user-sync-token"; 1041 const char kSupervisedUserSyncToken[] = "managed-user-sync-token";
1042 1042
1043 // Frequency in Milliseconds for system log uploads. Should only be used for 1043 // Frequency in Milliseconds for system log uploads. Should only be used for
1044 // testing purposes. 1044 // testing purposes.
1045 const char kSystemLogUploadFrequency[] = "system-log-upload-frequency"; 1045 const char kSystemLogUploadFrequency[] = "system-log-upload-frequency";
1046 1046
1047 // Passes the name of the current running automated test to Chrome. 1047 // Passes the name of the current running automated test to Chrome.
1048 const char kTestName[] = "test-name"; 1048 const char kTestName[] = "test-name";
1049 1049
1050 // Disables same-origin check on HTTP resources pushed via a SPDY proxy. 1050 // Disables same-origin check on HTTP resources pushed via a SPDY proxy in
1051 // The value is the host:port of the trusted proxy. 1051 // non-incognito sessions. The value is the host:port of the trusted proxy.
1052 const char kTrustedSpdyProxy[] = "trusted-spdy-proxy"; 1052 const char kTrustedSpdyProxy[] = "trusted-spdy-proxy";
1053 1053
1054 // Experimental. Shows a dialog asking the user to try chrome. This flag is to 1054 // Experimental. Shows a dialog asking the user to try chrome. This flag is to
1055 // be used only by the upgrade process. 1055 // be used only by the upgrade process.
1056 const char kTryChromeAgain[] = "try-chrome-again"; 1056 const char kTryChromeAgain[] = "try-chrome-again";
1057 1057
1058 // Overrides per-origin quota settings to unlimited storage for any 1058 // Overrides per-origin quota settings to unlimited storage for any
1059 // apps/origins. This should be used only for testing purpose. 1059 // apps/origins. This should be used only for testing purpose.
1060 const char kUnlimitedStorage[] = "unlimited-storage"; 1060 const char kUnlimitedStorage[] = "unlimited-storage";
1061 1061
(...skipping 325 matching lines...) Expand 10 before | Expand all | Expand 10 after
1387 1387
1388 // ----------------------------------------------------------------------------- 1388 // -----------------------------------------------------------------------------
1389 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1389 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1390 // 1390 //
1391 // You were going to just dump your switches here, weren't you? Instead, please 1391 // You were going to just dump your switches here, weren't you? Instead, please
1392 // put them in alphabetical order above, or in order inside the appropriate 1392 // put them in alphabetical order above, or in order inside the appropriate
1393 // ifdef at the bottom. The order should match the header. 1393 // ifdef at the bottom. The order should match the header.
1394 // ----------------------------------------------------------------------------- 1394 // -----------------------------------------------------------------------------
1395 1395
1396 } // namespace switches 1396 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698