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

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

Issue 8051030: Changing third-party cookie blocking: strict by default. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 9 years, 2 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
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 89
90 // The value of this switch tells the app to listen for and broadcast 90 // The value of this switch tells the app to listen for and broadcast
91 // automation-related messages on IPC channel with the given ID. 91 // automation-related messages on IPC channel with the given ID.
92 const char kAutomationClientChannelID[] = "automation-channel"; 92 const char kAutomationClientChannelID[] = "automation-channel";
93 93
94 // Causes the automation provider to reinitialize its IPC channel instead of 94 // Causes the automation provider to reinitialize its IPC channel instead of
95 // shutting down when a client disconnects. 95 // shutting down when a client disconnects.
96 const char kAutomationReinitializeOnChannelError[] = 96 const char kAutomationReinitializeOnChannelError[] =
97 "automation-reinitialize-on-channel-error"; 97 "automation-reinitialize-on-channel-error";
98 98
99 // When the option to block third-party cookies from being set is enabled,
100 // also block third-party cookies from being read.
101 const char kBlockReadingThirdPartyCookies[] =
102 "block-reading-third-party-cookies";
103
104 // How often (in seconds) to check for updates. Should only be used for 99 // How often (in seconds) to check for updates. Should only be used for
105 // testing purposes. 100 // testing purposes.
106 const char kCheckForUpdateIntervalSec[] = "check-for-update-interval"; 101 const char kCheckForUpdateIntervalSec[] = "check-for-update-interval";
107 102
108 // Tells chrome to load the specified version of chrome.dll on Windows. If 103 // Tells chrome to load the specified version of chrome.dll on Windows. If
109 // this version cannot be loaded, Chrome will exit. 104 // this version cannot be loaded, Chrome will exit.
110 const char kChromeVersion[] = "chrome-version"; 105 const char kChromeVersion[] = "chrome-version";
111 106
112 // Comma-separated list of SSL cipher suites to disable. 107 // Comma-separated list of SSL cipher suites to disable.
113 const char kCipherSuiteBlacklist[] = "cipher-suite-blacklist"; 108 const char kCipherSuiteBlacklist[] = "cipher-suite-blacklist";
(...skipping 1126 matching lines...) Expand 10 before | Expand all | Expand 10 after
1240 1235
1241 // ----------------------------------------------------------------------------- 1236 // -----------------------------------------------------------------------------
1242 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1237 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1243 // 1238 //
1244 // You were going to just dump your switches here, weren't you? Instead, 1239 // You were going to just dump your switches here, weren't you? Instead,
1245 // please put them in alphabetical order above, or in order inside the 1240 // please put them in alphabetical order above, or in order inside the
1246 // appropriate ifdef at the bottom. The order should match the header. 1241 // appropriate ifdef at the bottom. The order should match the header.
1247 // ----------------------------------------------------------------------------- 1242 // -----------------------------------------------------------------------------
1248 1243
1249 } // namespace switches 1244 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698