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

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

Issue 1021053003: Delivering the FIRST_NONEMPTY_PAINT phase changing event to base/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@phase_splitting
Patch Set: Fixing a typo. 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 83 matching lines...) Expand 10 before | Expand all | Expand 10 after
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::ProcessDataPhaseSnapshot& process_data_phase, 100 const tracked_objects::ProcessDataPhaseSnapshot& process_data_phase,
101 base::ProcessId process_id, 101 base::ProcessId process_id,
102 content::ProcessType process_type, 102 content::ProcessType process_type,
103 int profiling_phase, 103 int profiling_phase,
104 base::TimeDelta phase_start, 104 base::TimeTicks phase_start,
105 base::TimeDelta phase_finish, 105 base::TimeTicks phase_finish,
106 const metrics::ProfilerEvents& past_profiler_events) override; 106 const metrics::ProfilerEvents& past_profiler_events) override;
107 void FinishedReceivingProfilerData() override; 107 void FinishedReceivingProfilerData() override;
108 108
109 // 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
110 // these directly. 110 // these directly.
111 void OnMemoryDetailCollectionDone(); 111 void OnMemoryDetailCollectionDone();
112 void OnHistogramSynchronizationDone(); 112 void OnHistogramSynchronizationDone();
113 113
114 // Records metrics about the switches present on the command line. 114 // Records metrics about the switches present on the command line.
115 void RecordCommandLineMetrics(); 115 void RecordCommandLineMetrics();
(...skipping 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 base::Closure finished_gathering_initial_metrics_callback_; 178 base::Closure finished_gathering_initial_metrics_callback_;
179 179
180 // The MemoryGrowthTracker instance that tracks memory usage growth in 180 // The MemoryGrowthTracker instance that tracks memory usage growth in
181 // MemoryDetails. 181 // MemoryDetails.
182 MemoryGrowthTracker memory_growth_tracker_; 182 MemoryGrowthTracker memory_growth_tracker_;
183 183
184 // 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
185 // used. 185 // used.
186 base::Callback<void(bool*)> cellular_callback_; 186 base::Callback<void(bool*)> cellular_callback_;
187 187
188 base::WeakPtrFactory<ChromeMetricsServiceClient> weak_ptr_factory_; 188 base::WeakPtrFactory<ChromeMetricsServiceClient> weak_ptr_factory_;
Ilya Sherman 2015/04/08 23:36:14 nit: The WeakPtrFactory should always be the final
vadimt 2015/04/09 00:15:03 Done.
189 189
190 // Time of this object's creation.
191 const base::TimeTicks start_time_;
192
190 DISALLOW_COPY_AND_ASSIGN(ChromeMetricsServiceClient); 193 DISALLOW_COPY_AND_ASSIGN(ChromeMetricsServiceClient);
191 }; 194 };
192 195
193 #endif // CHROME_BROWSER_METRICS_CHROME_METRICS_SERVICE_CLIENT_H_ 196 #endif // CHROME_BROWSER_METRICS_CHROME_METRICS_SERVICE_CLIENT_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698