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

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

Issue 2360143006: Stack sampling profiler: run the profiler in the GPU process on trunk builds (Closed)
Patch Set: . Created 4 years, 2 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 10
(...skipping 916 matching lines...) Expand 10 before | Expand all | Expand 10 after
927 927
928 // Causes SSL key material to be logged to the specified file for debugging 928 // Causes SSL key material to be logged to the specified file for debugging
929 // purposes. See 929 // purposes. See
930 // https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format 930 // https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format
931 // for the format. 931 // for the format.
932 const char kSSLKeyLogFile[] = "ssl-key-log-file"; 932 const char kSSLKeyLogFile[] = "ssl-key-log-file";
933 933
934 // Starts the browser maximized, regardless of any previous settings. 934 // Starts the browser maximized, regardless of any previous settings.
935 const char kStartMaximized[] = "start-maximized"; 935 const char kStartMaximized[] = "start-maximized";
936 936
937 // Starts the stack sampling profiler in the child process.
938 const char kStartStackProfiler[] = "start-stack-profiler";
939
937 // Sets the supervised user ID for any loaded or newly created profile to the 940 // Sets the supervised user ID for any loaded or newly created profile to the
938 // given value. Pass an empty string to mark the profile as non-supervised. 941 // given value. Pass an empty string to mark the profile as non-supervised.
939 // Used for testing. 942 // Used for testing.
940 const char kSupervisedUserId[] = "managed-user-id"; 943 const char kSupervisedUserId[] = "managed-user-id";
941 944
942 // Enables/disables SafeSites filtering for supervised users. Possible values 945 // Enables/disables SafeSites filtering for supervised users. Possible values
943 // are "enabled", "disabled", "blacklist-only", and "online-check-only". 946 // are "enabled", "disabled", "blacklist-only", and "online-check-only".
944 const char kSupervisedUserSafeSites[] = "supervised-user-safesites"; 947 const char kSupervisedUserSafeSites[] = "supervised-user-safesites";
945 948
946 // Used to authenticate requests to the Sync service for supervised users. 949 // Used to authenticate requests to the Sync service for supervised users.
(...skipping 396 matching lines...) Expand 10 before | Expand all | Expand 10 after
1343 1346
1344 // ----------------------------------------------------------------------------- 1347 // -----------------------------------------------------------------------------
1345 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1348 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1346 // 1349 //
1347 // You were going to just dump your switches here, weren't you? Instead, please 1350 // You were going to just dump your switches here, weren't you? Instead, please
1348 // put them in alphabetical order above, or in order inside the appropriate 1351 // put them in alphabetical order above, or in order inside the appropriate
1349 // ifdef at the bottom. The order should match the header. 1352 // ifdef at the bottom. The order should match the header.
1350 // ----------------------------------------------------------------------------- 1353 // -----------------------------------------------------------------------------
1351 1354
1352 } // namespace switches 1355 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698