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

Unified Diff: base/test/statistics_delta_reader.h

Issue 379283002: Rework UMAHistogramHelper and StatisticsDeltaReader into [Chrome]HistogramTester. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebase Created 6 years, 4 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 | « base/test/histogram_tester_unittest.cc ('k') | base/test/statistics_delta_reader.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/test/statistics_delta_reader.h
diff --git a/base/test/statistics_delta_reader.h b/base/test/statistics_delta_reader.h
deleted file mode 100644
index 26d87c5b0ad3163ef940ff5ed646c5ebeb9ea3b6..0000000000000000000000000000000000000000
--- a/base/test/statistics_delta_reader.h
+++ /dev/null
@@ -1,45 +0,0 @@
-// 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 BASE_TEST_STATISTICS_DELTA_READER_H_
-#define BASE_TEST_STATISTICS_DELTA_READER_H_
-
-#include <map>
-#include <string>
-
-#include "base/basictypes.h"
-#include "base/memory/scoped_ptr.h"
-
-namespace base {
-
-class HistogramSamples;
-
-// This class acts as a differential reader for histogram samples, enabling
-// tests to check that metrics were recorded as they should be.
-//
-// This class is DEPRECATED.
-// TODO(mlerman): Remove all references to this class with UMAHistogramHelper
-// references. crbug.com/384011
-class StatisticsDeltaReader {
- public:
- StatisticsDeltaReader();
- ~StatisticsDeltaReader();
-
- // Returns the histogram data accumulated since this instance was created.
- // Returns NULL if no samples are available.
- scoped_ptr<HistogramSamples> GetHistogramSamplesSinceCreation(
- const std::string& histogram_name);
-
- private:
- // Used to determine the histogram changes made during this instance's
- // lifecycle. This instance takes ownership of the samples, which are deleted
- // when the instance is destroyed.
- std::map<std::string, HistogramSamples*> original_samples_;
-
- DISALLOW_COPY_AND_ASSIGN(StatisticsDeltaReader);
-};
-
-} // namespace base
-
-#endif // BASE_TEST_STATISTICS_DELTA_READER_H_
« no previous file with comments | « base/test/histogram_tester_unittest.cc ('k') | base/test/statistics_delta_reader.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698