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

Unified Diff: base/metrics/histogram.h

Issue 7461141: Rename BASE_API to BASE_EXPORT. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 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/metrics/field_trial.h ('k') | base/metrics/stats_counters.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: base/metrics/histogram.h
===================================================================
--- base/metrics/histogram.h (revision 95578)
+++ base/metrics/histogram.h (working copy)
@@ -45,7 +45,7 @@
#include <string>
#include <vector>
-#include "base/base_api.h"
+#include "base/base_export.h"
#include "base/gtest_prod_util.h"
#include "base/logging.h"
#include "base/time.h"
@@ -266,7 +266,7 @@
class Histogram;
class LinearHistogram;
-class BASE_API Histogram {
+class BASE_EXPORT Histogram {
public:
typedef int Sample; // Used for samples (and ranges of samples).
typedef int Count; // Used to count samples in a bucket.
@@ -325,7 +325,7 @@
//----------------------------------------------------------------------------
// Statistic values, developed over the life of the histogram.
- class BASE_API SampleSet {
+ class BASE_EXPORT SampleSet {
public:
explicit SampleSet();
~SampleSet();
@@ -584,7 +584,7 @@
// LinearHistogram is a more traditional histogram, with evenly spaced
// buckets.
-class BASE_API LinearHistogram : public Histogram {
+class BASE_EXPORT LinearHistogram : public Histogram {
public:
virtual ~LinearHistogram();
@@ -640,7 +640,7 @@
//------------------------------------------------------------------------------
// BooleanHistogram is a histogram for booleans.
-class BASE_API BooleanHistogram : public LinearHistogram {
+class BASE_EXPORT BooleanHistogram : public LinearHistogram {
public:
static Histogram* FactoryGet(const std::string& name, Flags flags);
@@ -657,7 +657,7 @@
//------------------------------------------------------------------------------
// CustomHistogram is a histogram for a set of custom integers.
-class BASE_API CustomHistogram : public Histogram {
+class BASE_EXPORT CustomHistogram : public Histogram {
public:
static Histogram* FactoryGet(const std::string& name,
@@ -691,7 +691,7 @@
// general place for histograms to register, and supports a global API for
// accessing (i.e., dumping, or graphing) the data in all the histograms.
-class BASE_API StatisticsRecorder {
+class BASE_EXPORT StatisticsRecorder {
public:
typedef std::vector<Histogram*> Histograms;
« no previous file with comments | « base/metrics/field_trial.h ('k') | base/metrics/stats_counters.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698