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

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

Issue 10985036: Added units to the --performance-monitor-gathering flag description (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Created 8 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 | « no previous file | no next file » | 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 978 matching lines...) Expand 10 before | Expand all | Expand 10 after
989 const char kPackExtensionKey[] = "pack-extension-key"; 989 const char kPackExtensionKey[] = "pack-extension-key";
990 990
991 // Specifies the path to the user data folder for the parent profile. 991 // Specifies the path to the user data folder for the parent profile.
992 const char kParentProfile[] = "parent-profile"; 992 const char kParentProfile[] = "parent-profile";
993 993
994 // Launches PerformanceMonitor at startup, which will gather statistics about 994 // Launches PerformanceMonitor at startup, which will gather statistics about
995 // Chrome's CPU and memory usage, page load times, startup times, and network 995 // Chrome's CPU and memory usage, page load times, startup times, and network
996 // usage, and will also store information about events which may be of interest, 996 // usage, and will also store information about events which may be of interest,
997 // such as extension-related occurrences and crashes. Optionally, this may be 997 // such as extension-related occurrences and crashes. Optionally, this may be
998 // run with an integer value representing the interval between the timed 998 // run with an integer value representing the interval between the timed
999 // metric gatherings (if invalid or not provided, the default interval is used). 999 // metric gatherings, measured in seconds (if invalid or not provided, the
1000 // default interval is used).
1000 const char kPerformanceMonitorGathering[] = "performance-monitor-gathering"; 1001 const char kPerformanceMonitorGathering[] = "performance-monitor-gathering";
1001 1002
1002 // Read previously recorded data from the cache. Only cached data is read. 1003 // Read previously recorded data from the cache. Only cached data is read.
1003 // See kRecordMode. 1004 // See kRecordMode.
1004 const char kPlaybackMode[] = "playback-mode"; 1005 const char kPlaybackMode[] = "playback-mode";
1005 1006
1006 // Overrides the path to the location that PNaCl is installed. 1007 // Overrides the path to the location that PNaCl is installed.
1007 const char kPnaclDir[] = "pnacl-dir"; 1008 const char kPnaclDir[] = "pnacl-dir";
1008 1009
1009 // Controls the PPAPI Flash field trial. Valid values are defined below. If an 1010 // Controls the PPAPI Flash field trial. Valid values are defined below. If an
(...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after
1580 1581
1581 // ----------------------------------------------------------------------------- 1582 // -----------------------------------------------------------------------------
1582 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE. 1583 // DO NOT ADD YOUR CRAP TO THE BOTTOM OF THIS FILE.
1583 // 1584 //
1584 // You were going to just dump your switches here, weren't you? Instead, please 1585 // You were going to just dump your switches here, weren't you? Instead, please
1585 // put them in alphabetical order above, or in order inside the appropriate 1586 // put them in alphabetical order above, or in order inside the appropriate
1586 // ifdef at the bottom. The order should match the header. 1587 // ifdef at the bottom. The order should match the header.
1587 // ----------------------------------------------------------------------------- 1588 // -----------------------------------------------------------------------------
1588 1589
1589 } // namespace switches 1590 } // namespace switches
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698