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

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

Issue 547063003: Remove the unmaintained performance monitor. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 3 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/url_constants.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 9
10 namespace switches { 10 namespace switches {
(...skipping 867 matching lines...) Expand 10 before | Expand all | Expand 10 after
878 878
879 // Packages an extension to a .crx installable file from a given directory. 879 // Packages an extension to a .crx installable file from a given directory.
880 const char kPackExtension[] = "pack-extension"; 880 const char kPackExtension[] = "pack-extension";
881 881
882 // Optional PEM private key to use in signing packaged .crx. 882 // Optional PEM private key to use in signing packaged .crx.
883 const char kPackExtensionKey[] = "pack-extension-key"; 883 const char kPackExtensionKey[] = "pack-extension-key";
884 884
885 // Specifies the path to the user data folder for the parent profile. 885 // Specifies the path to the user data folder for the parent profile.
886 const char kParentProfile[] = "parent-profile"; 886 const char kParentProfile[] = "parent-profile";
887 887
888 // Launches PerformanceMonitor at startup, which will gather statistics about
889 // Chrome's CPU and memory usage, page load times, startup times, and network
890 // usage, and will also store information about events which may be of interest,
891 // such as extension-related occurrences and crashes. Optionally, this may be
892 // run with an integer value representing the interval between the timed
893 // metric gatherings, measured in seconds (if invalid or not provided, the
894 // default interval is used).
895 const char kPerformanceMonitorGathering[] = "performance-monitor-gathering";
896
897 // Development flag for permission request API. This flag is needed until 888 // Development flag for permission request API. This flag is needed until
898 // the API is finalized. 889 // the API is finalized.
899 // TODO(bauerb): Remove when this flag is not needed anymore. 890 // TODO(bauerb): Remove when this flag is not needed anymore.
900 const char kPermissionRequestApiScope[] = "permission-request-api-scope"; 891 const char kPermissionRequestApiScope[] = "permission-request-api-scope";
901 892
902 // Development flag for permission request API. This flag is needed until 893 // Development flag for permission request API. This flag is needed until
903 // the API is finalized. 894 // the API is finalized.
904 // TODO(bauerb): Remove when this flag is not needed anymore. 895 // TODO(bauerb): Remove when this flag is not needed anymore.
905 const char kPermissionRequestApiUrl[] = "permission-request-api-url"; 896 const char kPermissionRequestApiUrl[] = "permission-request-api-url";
906 897
(...skipping 444 matching lines...) Expand 10 before | Expand all | Expand 10 after
1351 1342
1352 // ----------------------------------------------------------------------------- 1343 // -----------------------------------------------------------------------------
1353 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1344 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1354 // 1345 //
1355 // You were going to just dump your switches here, weren't you? Instead, please 1346 // You were going to just dump your switches here, weren't you? Instead, please
1356 // put them in alphabetical order above, or in order inside the appropriate 1347 // put them in alphabetical order above, or in order inside the appropriate
1357 // ifdef at the bottom. The order should match the header. 1348 // ifdef at the bottom. The order should match the header.
1358 // ----------------------------------------------------------------------------- 1349 // -----------------------------------------------------------------------------
1359 1350
1360 } // namespace switches 1351 } // namespace switches
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.h ('k') | chrome/common/url_constants.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698