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

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

Issue 11801024: Fixed browser crash when using Debug build: (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Moved network related methods out of benchmarking_extension. Created 7 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 | Annotate | Revision Log
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 551 matching lines...) Expand 10 before | Expand all | Expand 10 after
562 // matches any pattern. If the value starts with !, a program will be debugged 562 // matches any pattern. If the value starts with !, a program will be debugged
563 // if manifest URL does not match any pattern. 563 // if manifest URL does not match any pattern.
564 const char kNaClDebugMask[] = "nacl-debug-mask"; 564 const char kNaClDebugMask[] = "nacl-debug-mask";
565 565
566 // Enables hardware exception handling via debugger process. 566 // Enables hardware exception handling via debugger process.
567 const char kEnableNaClExceptionHandling[] = "enable-nacl-exception-handling"; 567 const char kEnableNaClExceptionHandling[] = "enable-nacl-exception-handling";
568 568
569 // Enables the native messaging extensions API. 569 // Enables the native messaging extensions API.
570 const char kEnableNativeMessaging[] = "enable-native-messaging"; 570 const char kEnableNativeMessaging[] = "enable-native-messaging";
571 571
572 // Enables the network-related benchmarking extensions.
573 const char kEnableNetBenchmarking[] = "enable-net-benchmarking";
574
572 // Enables the new Autofill UI, which is part of the browser process rather than 575 // Enables the new Autofill UI, which is part of the browser process rather than
573 // part of the renderer process. http://crbug.com/51644 576 // part of the renderer process. http://crbug.com/51644
574 const char kEnableNewAutofillUi[] = "enable-new-autofill-ui"; 577 const char kEnableNewAutofillUi[] = "enable-new-autofill-ui";
575 578
576 // Enables new Autofill heuristics, such as adding support for new field types. 579 // Enables new Autofill heuristics, such as adding support for new field types.
577 const char kEnableNewAutofillHeuristics[] = "enable-new-autofill-heuristics"; 580 const char kEnableNewAutofillHeuristics[] = "enable-new-autofill-heuristics";
578 581
579 // Enables NPN and SPDY. In case server supports SPDY, browser will use SPDY. 582 // Enables NPN and SPDY. In case server supports SPDY, browser will use SPDY.
580 const char kEnableNpn[] = "enable-npn"; 583 const char kEnableNpn[] = "enable-npn";
581 584
(...skipping 1072 matching lines...) Expand 10 before | Expand all | Expand 10 after
1654 1657
1655 // ----------------------------------------------------------------------------- 1658 // -----------------------------------------------------------------------------
1656 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1659 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1657 // 1660 //
1658 // You were going to just dump your switches here, weren't you? Instead, please 1661 // You were going to just dump your switches here, weren't you? Instead, please
1659 // put them in alphabetical order above, or in order inside the appropriate 1662 // put them in alphabetical order above, or in order inside the appropriate
1660 // ifdef at the bottom. The order should match the header. 1663 // ifdef at the bottom. The order should match the header.
1661 // ----------------------------------------------------------------------------- 1664 // -----------------------------------------------------------------------------
1662 1665
1663 } // namespace switches 1666 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698