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

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

Issue 577823002: Moves ProfilerMetricsProvider to //components/metrics. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebaase Created 6 years, 3 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
« no previous file with comments | « chrome/browser/metrics/tracking_synchronizer.cc ('k') | chrome/browser/ui/webui/profiler_ui.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/metrics/tracking_synchronizer_observer.h
diff --git a/chrome/browser/metrics/tracking_synchronizer_observer.h b/chrome/browser/metrics/tracking_synchronizer_observer.h
deleted file mode 100644
index 9dc1d7528e928031d104c0109073b17846807753..0000000000000000000000000000000000000000
--- a/chrome/browser/metrics/tracking_synchronizer_observer.h
+++ /dev/null
@@ -1,39 +0,0 @@
-// Copyright (c) 2012 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_TRACKING_SYNCHRONIZER_OBSERVER_H_
-#define CHROME_BROWSER_METRICS_TRACKING_SYNCHRONIZER_OBSERVER_H_
-
-namespace tracked_objects {
-struct ProcessDataSnapshot;
-}
-
-namespace chrome_browser_metrics {
-
-// Observer for notifications from the TrackingSynchronizer class.
-class TrackingSynchronizerObserver {
- public:
- // Received |profiler_data| from a single process of |process_type|.
- // The observer should assume there might be more data coming until
- // |FinishedReceivingData()| is called.
- virtual void ReceivedProfilerData(
- const tracked_objects::ProcessDataSnapshot& profiler_data,
- int process_type) = 0;
-
- // The observer should not expect any more calls to |ReceivedProfilerData()|
- // (without re-registering). This is sent either when data from all processes
- // has been gathered, or when the request times out.
- virtual void FinishedReceivingProfilerData() {}
-
- protected:
- TrackingSynchronizerObserver() {}
- virtual ~TrackingSynchronizerObserver() {}
-
- private:
- DISALLOW_COPY_AND_ASSIGN(TrackingSynchronizerObserver);
-};
-
-} // namespace chrome_browser_metrics
-
-#endif // CHROME_BROWSER_METRICS_TRACKING_SYNCHRONIZER_OBSERVER_H_
« no previous file with comments | « chrome/browser/metrics/tracking_synchronizer.cc ('k') | chrome/browser/ui/webui/profiler_ui.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698