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

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, merge gyp targets, sync with latest 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 685 matching lines...) Expand 10 before | Expand all | Expand 10 after
696 // already running chrome process via the fast path, ie: before chrome.dll is 696 // already running chrome process via the fast path, ie: before chrome.dll is
697 // loaded. It is useful to tell the difference for tracking purposes. 697 // loaded. It is useful to tell the difference for tracking purposes.
698 const char kFastStart[] = "fast-start"; 698 const char kFastStart[] = "fast-start";
699 699
700 // These two flags are added around the switches about:flags adds to the 700 // These two flags are added around the switches about:flags adds to the
701 // command line. This is useful to see which switches were added by about:flags 701 // command line. This is useful to see which switches were added by about:flags
702 // on about:version. They don't have any effect. 702 // on about:version. They don't have any effect.
703 const char kFlagSwitchesBegin[] = "flag-switches-begin"; 703 const char kFlagSwitchesBegin[] = "flag-switches-begin";
704 const char kFlagSwitchesEnd[] = "flag-switches-end"; 704 const char kFlagSwitchesEnd[] = "flag-switches-end";
705 705
706 // Alternative feedback server to use when submitting user feedback
707 const char kFeedbackServer[] = "feedback-server";
708
709 // The file descriptor limit is set to the value of this switch, subject to the 706 // The file descriptor limit is set to the value of this switch, subject to the
710 // OS hard limits. Useful for testing that file descriptor exhaustion is 707 // OS hard limits. Useful for testing that file descriptor exhaustion is
711 // handled gracefully. 708 // handled gracefully.
712 const char kFileDescriptorLimit[] = "file-descriptor-limit"; 709 const char kFileDescriptorLimit[] = "file-descriptor-limit";
713 710
714 // Forces application mode. This hides certain system UI elements and forces 711 // Forces application mode. This hides certain system UI elements and forces
715 // the app to be installed if it hasn't been already. 712 // the app to be installed if it hasn't been already.
716 const char kForceAppMode[] = "force-app-mode"; 713 const char kForceAppMode[] = "force-app-mode";
717 714
718 // Displays the First Run experience when the browser is started, regardless of 715 // Displays the First Run experience when the browser is started, regardless of
(...skipping 723 matching lines...) Expand 10 before | Expand all | Expand 10 after
1442 1439
1443 // ----------------------------------------------------------------------------- 1440 // -----------------------------------------------------------------------------
1444 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1441 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1445 // 1442 //
1446 // You were going to just dump your switches here, weren't you? Instead, please 1443 // You were going to just dump your switches here, weren't you? Instead, please
1447 // put them in alphabetical order above, or in order inside the appropriate 1444 // put them in alphabetical order above, or in order inside the appropriate
1448 // ifdef at the bottom. The order should match the header. 1445 // ifdef at the bottom. The order should match the header.
1449 // ----------------------------------------------------------------------------- 1446 // -----------------------------------------------------------------------------
1450 1447
1451 } // namespace switches 1448 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698