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

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

Issue 1309363003: Add flag to enable alternative services. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Re: #3. Created 5 years, 3 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') | tools/metrics/histograms/histograms.xml » ('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 504 matching lines...) Expand 10 before | Expand all | Expand 10 after
515 const char kEnablePushApiBackgroundMode[] = "enable-push-api-background-mode"; 515 const char kEnablePushApiBackgroundMode[] = "enable-push-api-background-mode";
516 const char kDisablePushApiBackgroundMode[] = "disable-push-api-background-mode"; 516 const char kDisablePushApiBackgroundMode[] = "disable-push-api-background-mode";
517 517
518 // Enables support for the QUIC protocol. This is a temporary testing flag. 518 // Enables support for the QUIC protocol. This is a temporary testing flag.
519 const char kEnableQuic[] = "enable-quic"; 519 const char kEnableQuic[] = "enable-quic";
520 520
521 // Enable use of Chromium's port selection for the ephemeral port via bind(). 521 // Enable use of Chromium's port selection for the ephemeral port via bind().
522 // This only has an effect if QUIC protocol is enabled. 522 // This only has an effect if QUIC protocol is enabled.
523 const char kEnableQuicPortSelection[] = "enable-quic-port-selection"; 523 const char kEnableQuicPortSelection[] = "enable-quic-port-selection";
524 524
525 // Enables support for HTTP alternative services.
526 const char kEnableAlternativeServices[] = "enable-alternative-services";
527
525 // Enables save password prompt bubble. 528 // Enables save password prompt bubble.
526 const char kEnableSavePasswordBubble[] = "enable-save-password-bubble"; 529 const char kEnableSavePasswordBubble[] = "enable-save-password-bubble";
527 530
528 // Enables SDCH persistence. 531 // Enables SDCH persistence.
529 const char kEnableSdchPersistence[] = "enable-sdch-persistence"; 532 const char kEnableSdchPersistence[] = "enable-sdch-persistence";
530 533
531 // Enables using bubbles for session restore request instead of infobars. 534 // Enables using bubbles for session restore request instead of infobars.
532 const char kEnableSessionCrashedBubble[] = "enable-session-crashed-bubble"; 535 const char kEnableSessionCrashedBubble[] = "enable-session-crashed-bubble";
533 536
534 // Enable or disable settings in a separate browser window per profile 537 // Enable or disable settings in a separate browser window per profile
(...skipping 851 matching lines...) Expand 10 before | Expand all | Expand 10 after
1386 1389
1387 // ----------------------------------------------------------------------------- 1390 // -----------------------------------------------------------------------------
1388 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1391 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1389 // 1392 //
1390 // You were going to just dump your switches here, weren't you? Instead, please 1393 // You were going to just dump your switches here, weren't you? Instead, please
1391 // put them in alphabetical order above, or in order inside the appropriate 1394 // put them in alphabetical order above, or in order inside the appropriate
1392 // ifdef at the bottom. The order should match the header. 1395 // ifdef at the bottom. The order should match the header.
1393 // ----------------------------------------------------------------------------- 1396 // -----------------------------------------------------------------------------
1394 1397
1395 } // namespace switches 1398 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | tools/metrics/histograms/histograms.xml » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698