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

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

Issue 9700056: Remove experimental support for MAC cookies (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Remove unused global Created 8 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 | Annotate | Revision Log
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | net/http/http_mac_signature.h » ('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 501 matching lines...) Expand 10 before | Expand all | Expand 10 after
512 const char kEnableIPv6[] = "enable-ipv6"; 512 const char kEnableIPv6[] = "enable-ipv6";
513 513
514 /// Enables the IPC fuzzer for reliability testing 514 /// Enables the IPC fuzzer for reliability testing
515 const char kEnableIPCFuzzing[] = "enable-ipc-fuzzing"; 515 const char kEnableIPCFuzzing[] = "enable-ipc-fuzzing";
516 516
517 // Enables IP Pooling within the networks stack (SPDY only). When a connection 517 // Enables IP Pooling within the networks stack (SPDY only). When a connection
518 // is needed for a domain which shares an IP with an existing connection, 518 // is needed for a domain which shares an IP with an existing connection,
519 // attempt to use the existing connection. 519 // attempt to use the existing connection.
520 const char kEnableIPPooling[] = "enable-ip-pooling"; 520 const char kEnableIPPooling[] = "enable-ip-pooling";
521 521
522 // Enables MAC cookies in the network stack. These cookies use HMAC to protect
523 // session state from passive network attackers.
524 // http://tools.ietf.org/html/draft-hammer-oauth-v2-mac-token
525 const char kEnableMacCookies[] = "enable-mac-cookies";
526
527 // Allows reporting memory info (JS heap size) to page. 522 // Allows reporting memory info (JS heap size) to page.
528 const char kEnableMemoryInfo[] = "enable-memory-info"; 523 const char kEnableMemoryInfo[] = "enable-memory-info";
529 524
530 // Runs the Native Client inside the renderer process and enables GPU plugin 525 // Runs the Native Client inside the renderer process and enables GPU plugin
531 // (internally adds lEnableGpuPlugin to the command line). 526 // (internally adds lEnableGpuPlugin to the command line).
532 const char kEnableNaCl[] = "enable-nacl"; 527 const char kEnableNaCl[] = "enable-nacl";
533 528
534 // Enables debugging via RSP over a socket. 529 // Enables debugging via RSP over a socket.
535 const char kEnableNaClDebug[] = "enable-nacl-debug"; 530 const char kEnableNaClDebug[] = "enable-nacl-debug";
536 531
(...skipping 823 matching lines...) Expand 10 before | Expand all | Expand 10 after
1360 1355
1361 // ----------------------------------------------------------------------------- 1356 // -----------------------------------------------------------------------------
1362 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1357 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1363 // 1358 //
1364 // You were going to just dump your switches here, weren't you? Instead, please 1359 // You were going to just dump your switches here, weren't you? Instead, please
1365 // put them in alphabetical order above, or in order inside the appropriate 1360 // put them in alphabetical order above, or in order inside the appropriate
1366 // ifdef at the bottom. The order should match the header. 1361 // ifdef at the bottom. The order should match the header.
1367 // ----------------------------------------------------------------------------- 1362 // -----------------------------------------------------------------------------
1368 1363
1369 } // namespace switches 1364 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | net/http/http_mac_signature.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698