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

Side by Side Diff: chrome/browser/metrics/chrome_metrics_service_client.h

Issue 985773002: Introducing phased profiling framework (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@write_to_file
Patch Set: Fixing Android compile errors. Created 5 years, 8 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 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 #ifndef CHROME_BROWSER_METRICS_CHROME_METRICS_SERVICE_CLIENT_H_ 5 #ifndef CHROME_BROWSER_METRICS_CHROME_METRICS_SERVICE_CLIENT_H_
6 #define CHROME_BROWSER_METRICS_CHROME_METRICS_SERVICE_CLIENT_H_ 6 #define CHROME_BROWSER_METRICS_CHROME_METRICS_SERVICE_CLIENT_H_
7 7
8 #include <string> 8 #include <string>
9 9
10 #include "base/basictypes.h" 10 #include "base/basictypes.h"
(...skipping 79 matching lines...) Expand 10 before | Expand all | Expand 10 after
90 // Called after the Plugin init task has been completed that continues the 90 // Called after the Plugin init task has been completed that continues the
91 // init task by launching a task to gather Google Update statistics. 91 // init task by launching a task to gather Google Update statistics.
92 void OnInitTaskGotPluginInfo(); 92 void OnInitTaskGotPluginInfo();
93 93
94 // Called after GoogleUpdate init task has been completed that continues the 94 // Called after GoogleUpdate init task has been completed that continues the
95 // init task by loading profiler data. 95 // init task by loading profiler data.
96 void OnInitTaskGotGoogleUpdateData(); 96 void OnInitTaskGotGoogleUpdateData();
97 97
98 // TrackingSynchronizerObserver: 98 // TrackingSynchronizerObserver:
99 void ReceivedProfilerData( 99 void ReceivedProfilerData(
100 const tracked_objects::ProcessDataSnapshot& process_data, 100 const tracked_objects::ProcessDataPhaseSnapshot& process_data_phase,
101 int process_type) override; 101 base::ProcessId process_id,
102 content::ProcessType process_type,
103 int profiling_phase,
104 base::TimeDelta phase_start,
105 base::TimeDelta phase_finish,
106 const metrics::ProfilerEvents& past_profiler_events) override;
102 void FinishedReceivingProfilerData() override; 107 void FinishedReceivingProfilerData() override;
103 108
104 // Callbacks for various stages of final log info collection. Do not call 109 // Callbacks for various stages of final log info collection. Do not call
105 // these directly. 110 // these directly.
106 void OnMemoryDetailCollectionDone(); 111 void OnMemoryDetailCollectionDone();
107 void OnHistogramSynchronizationDone(); 112 void OnHistogramSynchronizationDone();
108 113
109 // Records metrics about the switches present on the command line. 114 // Records metrics about the switches present on the command line.
110 void RecordCommandLineMetrics(); 115 void RecordCommandLineMetrics();
111 116
(...skipping 67 matching lines...) Expand 10 before | Expand all | Expand 10 after
179 // Callback to determine whether or not a cellular network is currently being 184 // Callback to determine whether or not a cellular network is currently being
180 // used. 185 // used.
181 base::Callback<void(bool*)> cellular_callback_; 186 base::Callback<void(bool*)> cellular_callback_;
182 187
183 base::WeakPtrFactory<ChromeMetricsServiceClient> weak_ptr_factory_; 188 base::WeakPtrFactory<ChromeMetricsServiceClient> weak_ptr_factory_;
184 189
185 DISALLOW_COPY_AND_ASSIGN(ChromeMetricsServiceClient); 190 DISALLOW_COPY_AND_ASSIGN(ChromeMetricsServiceClient);
186 }; 191 };
187 192
188 #endif // CHROME_BROWSER_METRICS_CHROME_METRICS_SERVICE_CLIENT_H_ 193 #endif // CHROME_BROWSER_METRICS_CHROME_METRICS_SERVICE_CLIENT_H_
OLDNEW
« no previous file with comments | « chrome/browser/chrome_browser_main.cc ('k') | chrome/browser/metrics/chrome_metrics_service_client.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698