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

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

Issue 225183018: Move feedback files into src/components (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase to latest Created 6 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
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 714 matching lines...) Expand 10 before | Expand all | Expand 10 after
725 // already running chrome process via the fast path, ie: before chrome.dll is 725 // already running chrome process via the fast path, ie: before chrome.dll is
726 // loaded. It is useful to tell the difference for tracking purposes. 726 // loaded. It is useful to tell the difference for tracking purposes.
727 const char kFastStart[] = "fast-start"; 727 const char kFastStart[] = "fast-start";
728 728
729 // These two flags are added around the switches about:flags adds to the 729 // These two flags are added around the switches about:flags adds to the
730 // command line. This is useful to see which switches were added by about:flags 730 // command line. This is useful to see which switches were added by about:flags
731 // on about:version. They don't have any effect. 731 // on about:version. They don't have any effect.
732 const char kFlagSwitchesBegin[] = "flag-switches-begin"; 732 const char kFlagSwitchesBegin[] = "flag-switches-begin";
733 const char kFlagSwitchesEnd[] = "flag-switches-end"; 733 const char kFlagSwitchesEnd[] = "flag-switches-end";
734 734
735 // Alternative feedback server to use when submitting user feedback
736 const char kFeedbackServer[] = "feedback-server";
737
738 // The file descriptor limit is set to the value of this switch, subject to the 735 // The file descriptor limit is set to the value of this switch, subject to the
739 // OS hard limits. Useful for testing that file descriptor exhaustion is 736 // OS hard limits. Useful for testing that file descriptor exhaustion is
740 // handled gracefully. 737 // handled gracefully.
741 const char kFileDescriptorLimit[] = "file-descriptor-limit"; 738 const char kFileDescriptorLimit[] = "file-descriptor-limit";
742 739
743 // Forces application mode. This hides certain system UI elements and forces 740 // Forces application mode. This hides certain system UI elements and forces
744 // the app to be installed if it hasn't been already. 741 // the app to be installed if it hasn't been already.
745 const char kForceAppMode[] = "force-app-mode"; 742 const char kForceAppMode[] = "force-app-mode";
746 743
747 // Displays the First Run experience when the browser is started, regardless of 744 // Displays the First Run experience when the browser is started, regardless of
(...skipping 722 matching lines...) Expand 10 before | Expand all | Expand 10 after
1470 1467
1471 // ----------------------------------------------------------------------------- 1468 // -----------------------------------------------------------------------------
1472 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1469 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1473 // 1470 //
1474 // You were going to just dump your switches here, weren't you? Instead, please 1471 // You were going to just dump your switches here, weren't you? Instead, please
1475 // put them in alphabetical order above, or in order inside the appropriate 1472 // put them in alphabetical order above, or in order inside the appropriate
1476 // ifdef at the bottom. The order should match the header. 1473 // ifdef at the bottom. The order should match the header.
1477 // ----------------------------------------------------------------------------- 1474 // -----------------------------------------------------------------------------
1478 1475
1479 } // namespace switches 1476 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698