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

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: remove chrome/ from gyp files Created 6 years, 8 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 741 matching lines...) Expand 10 before | Expand all | Expand 10 after
752 // Allows displaying the list of existing profiles in the avatar bubble for 752 // Allows displaying the list of existing profiles in the avatar bubble for
753 // fast switching between profiles. 753 // fast switching between profiles.
754 const char kFastUserSwitching[] = "fast-user-switching"; 754 const char kFastUserSwitching[] = "fast-user-switching";
755 755
756 // These two flags are added around the switches about:flags adds to the 756 // These two flags are added around the switches about:flags adds to the
757 // command line. This is useful to see which switches were added by about:flags 757 // command line. This is useful to see which switches were added by about:flags
758 // on about:version. They don't have any effect. 758 // on about:version. They don't have any effect.
759 const char kFlagSwitchesBegin[] = "flag-switches-begin"; 759 const char kFlagSwitchesBegin[] = "flag-switches-begin";
760 const char kFlagSwitchesEnd[] = "flag-switches-end"; 760 const char kFlagSwitchesEnd[] = "flag-switches-end";
761 761
762 // Alternative feedback server to use when submitting user feedback
763 const char kFeedbackServer[] = "feedback-server";
764
765 // The file descriptor limit is set to the value of this switch, subject to the 762 // The file descriptor limit is set to the value of this switch, subject to the
766 // OS hard limits. Useful for testing that file descriptor exhaustion is 763 // OS hard limits. Useful for testing that file descriptor exhaustion is
767 // handled gracefully. 764 // handled gracefully.
768 const char kFileDescriptorLimit[] = "file-descriptor-limit"; 765 const char kFileDescriptorLimit[] = "file-descriptor-limit";
769 766
770 // Forces application mode. This hides certain system UI elements and forces 767 // Forces application mode. This hides certain system UI elements and forces
771 // the app to be installed if it hasn't been already. 768 // the app to be installed if it hasn't been already.
772 const char kForceAppMode[] = "force-app-mode"; 769 const char kForceAppMode[] = "force-app-mode";
773 770
774 // Displays the First Run experience when the browser is started, regardless of 771 // Displays the First Run experience when the browser is started, regardless of
(...skipping 751 matching lines...) Expand 10 before | Expand all | Expand 10 after
1526 1523
1527 // ----------------------------------------------------------------------------- 1524 // -----------------------------------------------------------------------------
1528 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1525 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1529 // 1526 //
1530 // You were going to just dump your switches here, weren't you? Instead, please 1527 // You were going to just dump your switches here, weren't you? Instead, please
1531 // put them in alphabetical order above, or in order inside the appropriate 1528 // put them in alphabetical order above, or in order inside the appropriate
1532 // ifdef at the bottom. The order should match the header. 1529 // ifdef at the bottom. The order should match the header.
1533 // ----------------------------------------------------------------------------- 1530 // -----------------------------------------------------------------------------
1534 1531
1535 } // namespace switches 1532 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698