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

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: Fix deps up for other OSes 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
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | components/components.gyp » ('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 709 matching lines...) Expand 10 before | Expand all | Expand 10 after
720 // already running chrome process via the fast path, ie: before chrome.dll is 720 // already running chrome process via the fast path, ie: before chrome.dll is
721 // loaded. It is useful to tell the difference for tracking purposes. 721 // loaded. It is useful to tell the difference for tracking purposes.
722 const char kFastStart[] = "fast-start"; 722 const char kFastStart[] = "fast-start";
723 723
724 // These two flags are added around the switches about:flags adds to the 724 // These two flags are added around the switches about:flags adds to the
725 // command line. This is useful to see which switches were added by about:flags 725 // command line. This is useful to see which switches were added by about:flags
726 // on about:version. They don't have any effect. 726 // on about:version. They don't have any effect.
727 const char kFlagSwitchesBegin[] = "flag-switches-begin"; 727 const char kFlagSwitchesBegin[] = "flag-switches-begin";
728 const char kFlagSwitchesEnd[] = "flag-switches-end"; 728 const char kFlagSwitchesEnd[] = "flag-switches-end";
729 729
730 // Alternative feedback server to use when submitting user feedback
731 const char kFeedbackServer[] = "feedback-server";
732
733 // The file descriptor limit is set to the value of this switch, subject to the 730 // The file descriptor limit is set to the value of this switch, subject to the
734 // OS hard limits. Useful for testing that file descriptor exhaustion is 731 // OS hard limits. Useful for testing that file descriptor exhaustion is
735 // handled gracefully. 732 // handled gracefully.
736 const char kFileDescriptorLimit[] = "file-descriptor-limit"; 733 const char kFileDescriptorLimit[] = "file-descriptor-limit";
737 734
738 // Forces application mode. This hides certain system UI elements and forces 735 // Forces application mode. This hides certain system UI elements and forces
739 // the app to be installed if it hasn't been already. 736 // the app to be installed if it hasn't been already.
740 const char kForceAppMode[] = "force-app-mode"; 737 const char kForceAppMode[] = "force-app-mode";
741 738
742 // Displays the First Run experience when the browser is started, regardless of 739 // Displays the First Run experience when the browser is started, regardless of
(...skipping 720 matching lines...) Expand 10 before | Expand all | Expand 10 after
1463 1460
1464 // ----------------------------------------------------------------------------- 1461 // -----------------------------------------------------------------------------
1465 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1462 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1466 // 1463 //
1467 // You were going to just dump your switches here, weren't you? Instead, please 1464 // You were going to just dump your switches here, weren't you? Instead, please
1468 // put them in alphabetical order above, or in order inside the appropriate 1465 // put them in alphabetical order above, or in order inside the appropriate
1469 // ifdef at the bottom. The order should match the header. 1466 // ifdef at the bottom. The order should match the header.
1470 // ----------------------------------------------------------------------------- 1467 // -----------------------------------------------------------------------------
1471 1468
1472 } // namespace switches 1469 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | components/components.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698