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

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: address comments 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
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/stack_sampling_configuration.h » ('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 #include "build/build_config.h" 9 #include "build/build_config.h"
10 10
(...skipping 914 matching lines...) Expand 10 before | Expand all | Expand 10 after
925 925
926 // Causes SSL key material to be logged to the specified file for debugging 926 // Causes SSL key material to be logged to the specified file for debugging
927 // purposes. See 927 // purposes. See
928 // https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format 928 // https://developer.mozilla.org/en-US/docs/Mozilla/Projects/NSS/Key_Log_Format
929 // for the format. 929 // for the format.
930 const char kSSLKeyLogFile[] = "ssl-key-log-file"; 930 const char kSSLKeyLogFile[] = "ssl-key-log-file";
931 931
932 // Starts the browser maximized, regardless of any previous settings. 932 // Starts the browser maximized, regardless of any previous settings.
933 const char kStartMaximized[] = "start-maximized"; 933 const char kStartMaximized[] = "start-maximized";
934 934
935 // Starts the stack sampling profiler in the child process.
936 const char kStartStackProfiler[] = "start-stack-profiler";
937
935 // Sets the supervised user ID for any loaded or newly created profile to the 938 // Sets the supervised user ID for any loaded or newly created profile to the
936 // given value. Pass an empty string to mark the profile as non-supervised. 939 // given value. Pass an empty string to mark the profile as non-supervised.
937 // Used for testing. 940 // Used for testing.
938 const char kSupervisedUserId[] = "managed-user-id"; 941 const char kSupervisedUserId[] = "managed-user-id";
939 942
940 // Enables/disables SafeSites filtering for supervised users. Possible values 943 // Enables/disables SafeSites filtering for supervised users. Possible values
941 // are "enabled", "disabled", "blacklist-only", and "online-check-only". 944 // are "enabled", "disabled", "blacklist-only", and "online-check-only".
942 const char kSupervisedUserSafeSites[] = "supervised-user-safesites"; 945 const char kSupervisedUserSafeSites[] = "supervised-user-safesites";
943 946
944 // Used to authenticate requests to the Sync service for supervised users. 947 // Used to authenticate requests to the Sync service for supervised users.
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after
1333 1336
1334 // ----------------------------------------------------------------------------- 1337 // -----------------------------------------------------------------------------
1335 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE. 1338 // DO NOT ADD YOUR VERY NICE FLAGS TO THE BOTTOM OF THIS FILE.
1336 // 1339 //
1337 // You were going to just dump your switches here, weren't you? Instead, please 1340 // You were going to just dump your switches here, weren't you? Instead, please
1338 // put them in alphabetical order above, or in order inside the appropriate 1341 // put them in alphabetical order above, or in order inside the appropriate
1339 // ifdef at the bottom. The order should match the header. 1342 // ifdef at the bottom. The order should match the header.
1340 // ----------------------------------------------------------------------------- 1343 // -----------------------------------------------------------------------------
1341 1344
1342 } // namespace switches 1345 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/stack_sampling_configuration.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698