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

Unified Diff: chrome/browser/metrics/profiler_metrics_provider.h

Issue 306023010: Introduce ProfilerMetricsProvider (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Avoid data bleeding between different logs Created 6 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/metrics/profiler_metrics_provider.h
diff --git a/chrome/browser/metrics/profiler_metrics_provider.h b/chrome/browser/metrics/profiler_metrics_provider.h
new file mode 100644
index 0000000000000000000000000000000000000000..5b90bc16527fb0c4273bd665fbab3c73f7415d22
--- /dev/null
+++ b/chrome/browser/metrics/profiler_metrics_provider.h
@@ -0,0 +1,41 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CHROME_BROWSER_METRICS_PROFILER_METRICS_PROVIDER_H_
+#define CHROME_BROWSER_METRICS_PROFILER_METRICS_PROVIDER_H_
+
+#include "base/basictypes.h"
+#include "components/metrics/metrics_provider.h"
+#include "components/metrics/proto/chrome_user_metrics_extension.pb.h"
+
+namespace tracked_objects {
+struct ProcessDataSnapshot;
+}
+
+// ProfilerMetricsProvider is responsible for filling out the |profiler_event|
+// section of the UMA proto.
+class ProfilerMetricsProvider : public metrics::MetricsProvider {
+ public:
+ ProfilerMetricsProvider();
+ virtual ~ProfilerMetricsProvider();
+
+ // metrics::MetricsDataProvider:
+ virtual void ProvideGeneralMetrics(
+ metrics::ChromeUserMetricsExtension* uma_proto) OVERRIDE;
+
+ // Records the passed profiled data, which should be a snapshot of the
+ // browser's profiled performance during startup for a single process.
+ void RecordProfilerData(
+ const tracked_objects::ProcessDataSnapshot& process_data,
+ int process_type);
+
+ private:
+ // Saved cache of generated Profiler event protos, to be copied into the UMA
+ // proto when ProvideGeneralMetrics() is called.
+ metrics::ProfilerEventProto profiler_event_cache_;
+
+ DISALLOW_COPY_AND_ASSIGN(ProfilerMetricsProvider);
+};
+
+#endif // CHROME_BROWSER_METRICS_PROFILER_METRICS_PROVIDER_H_

Powered by Google App Engine
This is Rietveld 408576698