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

Side by Side Diff: chrome/common/profiling.h

Issue 6250070: Added command line switches and UI (controlled via a build option) (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address review concerns Created 9 years, 10 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 | Annotate | Revision Log
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | chrome/common/profiling.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright (c) 2006-2008 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CHROME_COMMON_PROFILING_H_
6 #define CHROME_COMMON_PROFILING_H_
7 #pragma once
8
9 #include "build/build_config.h"
10
11 #include "base/basictypes.h"
12 #include "base/debug/profiler.h"
13
14 // The Profiling class manages the interaction with a sampling based profiler.
15 // Its function is controlled by the kProfilingAtStart, kProfilingFile, and
16 // kProfilingFlush command line values.
17 // All of the API should only be called from the main thread of the process.
18 class Profiling {
19 public:
20 // Called early in a process' life to allow profiling of startup time.
21 // the presence of kProfilingAtStart is checked.
22 static void ProcessStarted();
23
24 // Start profiling.
25 static void Start();
26
27 // Stop profiling and write out profiling file.
28 static void Stop();
29
30 // Returns true if the process is being profiled.
31 static bool BeingProfiled();
32
33 // Called when the main message loop is started, so that automatic flushing
34 // of the profile data file can be done.
35 static void MainMessageLoopStarted();
36
37 // Toggle profiling on/off.
38 static void Toggle();
39
40 private:
41 // Do not instantiate this class.
42 Profiling();
43
44 DISALLOW_COPY_AND_ASSIGN(Profiling);
45 };
46
47 #endif // CHROME_COMMON_PROFILING_H_
48
OLDNEW
« no previous file with comments | « chrome/common/chrome_switches.cc ('k') | chrome/common/profiling.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698