summaryrefslogtreecommitdiffstats
path: root/chrome_frame/utils.h
diff options
context:
space:
mode:
authorbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-14 04:38:38 +0000
committerbrettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-14 04:38:38 +0000
commit835d7c811c98f179090c57a827a9c9baa2130435 (patch)
treeedcff6b2c9029c6f867f650d762837f2485d99fb /chrome_frame/utils.h
parent4b1deac7ba7e7a6bf0425e6ed4db26e0c29daa7f (diff)
downloadchromium_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/utils.h')
-rw-r--r--chrome_frame/utils.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome_frame/utils.h b/chrome_frame/utils.h
index 8189faf..4ec548a 100644
--- a/chrome_frame/utils.h
+++ b/chrome_frame/utils.h
@@ -13,9 +13,9 @@
#include <string>
#include "base/basictypes.h"
-#include "base/histogram.h"
#include "base/lock.h"
#include "base/logging.h"
+#include "base/metrics/histogram.h"
#include "base/thread.h"
#include "gfx/rect.h"
#include "googleurl/src/gurl.h"
@@ -433,8 +433,8 @@ extern Lock g_ChromeFrameHistogramLock;
// Thread safe versions of the UMA histogram macros we use for ChromeFrame.
// These should be used for histograms in ChromeFrame. If other histogram
-// macros from base/histogram.h are needed then thread safe versions of those
-// should be defined and used.
+// macros from base/metrics/histogram.h are needed then thread safe versions of
+// those should be defined and used.
#define THREAD_SAFE_UMA_HISTOGRAM_CUSTOM_COUNTS(name, sample, min, max, \
bucket_count) { \
AutoLock lock(g_ChromeFrameHistogramLock); \