diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-14 04:38:38 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-14 04:38:38 +0000 |
commit | 835d7c811c98f179090c57a827a9c9baa2130435 (patch) | |
tree | edcff6b2c9029c6f867f650d762837f2485d99fb /chrome_frame/metrics_service.h | |
parent | 4b1deac7ba7e7a6bf0425e6ed4db26e0c29daa7f (diff) | |
download | chromium_src-835d7c811c98f179090c57a827a9c9baa2130435.zip chromium_src-835d7c811c98f179090c57a827a9c9baa2130435.tar.gz chromium_src-835d7c811c98f179090c57a827a9c9baa2130435.tar.bz2 |
Move Stats, histograms, and field trial into a metrics subdirectory of base and
put them in the base namespace.
TEST=it compiles
BUG=none
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62510 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome_frame/metrics_service.h')
-rw-r--r-- | chrome_frame/metrics_service.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome_frame/metrics_service.h b/chrome_frame/metrics_service.h index 252f716..38eb1f4 100644 --- a/chrome_frame/metrics_service.h +++ b/chrome_frame/metrics_service.h @@ -12,8 +12,8 @@ #include <string> #include "base/basictypes.h" -#include "base/histogram.h" #include "base/lazy_instance.h" +#include "base/metrics/histogram.h" #include "base/platform_thread.h" #include "base/scoped_ptr.h" #include "base/thread_local.h" @@ -49,7 +49,7 @@ class MetricsService : public MetricsServiceBase { }; // Maintain a map of histogram names to the sample stats we've sent. - typedef std::map<std::string, Histogram::SampleSet> LoggedSampleMap; + typedef std::map<std::string, base::Histogram::SampleSet> LoggedSampleMap; // Sets and gets whether metrics recording is active. // SetRecording(false) also forces a persistent save of logging state (if |