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

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

Issue 14924002: WebUI for Profile Settings Reset (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix browser test Created 7 years, 7 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 596 matching lines...) Expand 10 before | Expand all | Expand 10 after
607 // Enables tracking of tasks in profiler for viewing via about:profiler. 607 // Enables tracking of tasks in profiler for viewing via about:profiler.
608 // To predominantly disable tracking (profiling), use the command line switch: 608 // To predominantly disable tracking (profiling), use the command line switch:
609 // --enable-profiling=0 609 // --enable-profiling=0
610 // Some tracking will still take place at startup, but it will be turned off 610 // Some tracking will still take place at startup, but it will be turned off
611 // during chrome_browser_main. 611 // during chrome_browser_main.
612 const char kEnableProfiling[] = "enable-profiling"; 612 const char kEnableProfiling[] = "enable-profiling";
613 613
614 // Enables support for the QUIC protocol. This is a temporary testing flag. 614 // Enables support for the QUIC protocol. This is a temporary testing flag.
615 const char kEnableQuic[] = "enable-quic"; 615 const char kEnableQuic[] = "enable-quic";
616 616
617 // Enables support in chrome://settings to reset settings in your profile
618 // that are often touched by malware.
619 const char kEnableResetProfileSettings[] = "enable-reset-profile-settings";
620
617 // Enables content settings based on host *and* plug-in in the user 621 // Enables content settings based on host *and* plug-in in the user
618 // preferences. 622 // preferences.
619 const char kEnableResourceContentSettings[] = 623 const char kEnableResourceContentSettings[] =
620 "enable-resource-content-settings"; 624 "enable-resource-content-settings";
621 625
622 // Controls the support for SDCH filtering (dictionary based expansion of 626 // Controls the support for SDCH filtering (dictionary based expansion of
623 // content). By default SDCH filtering is enabled. To disable SDCH filtering, 627 // content). By default SDCH filtering is enabled. To disable SDCH filtering,
624 // use "--enable-sdch=0" as command line argument. SDCH is currently only 628 // use "--enable-sdch=0" as command line argument. SDCH is currently only
625 // supported server-side for searches on google.com. 629 // supported server-side for searches on google.com.
626 const char kEnableSdch[] = "enable-sdch"; 630 const char kEnableSdch[] = "enable-sdch";
(...skipping 1052 matching lines...) Expand 10 before | Expand all | Expand 10 after
1679 1683
1680 // ----------------------------------------------------------------------------- 1684 // -----------------------------------------------------------------------------
1681 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1685 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1682 // 1686 //
1683 // You were going to just dump your switches here, weren't you? Instead, please 1687 // You were going to just dump your switches here, weren't you? Instead, please
1684 // put them in alphabetical order above, or in order inside the appropriate 1688 // put them in alphabetical order above, or in order inside the appropriate
1685 // ifdef at the bottom. The order should match the header. 1689 // ifdef at the bottom. The order should match the header.
1686 // ----------------------------------------------------------------------------- 1690 // -----------------------------------------------------------------------------
1687 1691
1688 } // namespace switches 1692 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698