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

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

Issue 2988453002: Task manager tracking RenderProcessHosts processes (Closed)
Patch Set: fixed copy past cruft Created 3 years, 4 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 #include "build/build_config.h" 9 #include "build/build_config.h"
10 #include "ppapi/features/features.h" 10 #include "ppapi/features/features.h"
(...skipping 728 matching lines...) Expand 10 before | Expand all | Expand 10 after
739 const char kSupervisedUserId[] = "managed-user-id"; 739 const char kSupervisedUserId[] = "managed-user-id";
740 740
741 // Used to authenticate requests to the Sync service for supervised users. 741 // Used to authenticate requests to the Sync service for supervised users.
742 // Setting this switch also causes Sync to be set up for a supervised user. 742 // Setting this switch also causes Sync to be set up for a supervised user.
743 const char kSupervisedUserSyncToken[] = "managed-user-sync-token"; 743 const char kSupervisedUserSyncToken[] = "managed-user-sync-token";
744 744
745 // Frequency in Milliseconds for system log uploads. Should only be used for 745 // Frequency in Milliseconds for system log uploads. Should only be used for
746 // testing purposes. 746 // testing purposes.
747 const char kSystemLogUploadFrequency[] = "system-log-upload-frequency"; 747 const char kSystemLogUploadFrequency[] = "system-log-upload-frequency";
748 748
749 // Sets the task manager to track extra renderer processes that might not
750 // normally be displayed in the task manager.
751 const char kTaskManagerShowExtraRenderers[] =
752 "task-manager-show-extra-renderers";
753
749 // Passes the name of the current running automated test to Chrome. 754 // Passes the name of the current running automated test to Chrome.
750 const char kTestName[] = "test-name"; 755 const char kTestName[] = "test-name";
751 756
752 // Identifies a list of download sources as trusted, but only if proper group 757 // Identifies a list of download sources as trusted, but only if proper group
753 // policy is set. 758 // policy is set.
754 const char kTrustedDownloadSources[] = "trusted-download-sources"; 759 const char kTrustedDownloadSources[] = "trusted-download-sources";
755 760
756 // Experimental. Shows a dialog asking the user to try chrome. This flag is to 761 // Experimental. Shows a dialog asking the user to try chrome. This flag is to
757 // be used only by the upgrade process. 762 // be used only by the upgrade process.
758 const char kTryChromeAgain[] = "try-chrome-again"; 763 const char kTryChromeAgain[] = "try-chrome-again";
(...skipping 381 matching lines...) Expand 10 before | Expand all | Expand 10 after
1140 1145
1141 // ----------------------------------------------------------------------------- 1146 // -----------------------------------------------------------------------------
1142 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. 1147 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE.
1143 // 1148 //
1144 // You were going to just dump your switches here, weren't you? Instead, please 1149 // You were going to just dump your switches here, weren't you? Instead, please
1145 // put them in alphabetical order above, or in order inside the appropriate 1150 // put them in alphabetical order above, or in order inside the appropriate
1146 // ifdef at the bottom. The order should match the header. 1151 // ifdef at the bottom. The order should match the header.
1147 // ----------------------------------------------------------------------------- 1152 // -----------------------------------------------------------------------------
1148 1153
1149 } // namespace switches 1154 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698