summaryrefslogtreecommitdiffstats
path: root/tools/memory_watcher
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 /tools/memory_watcher
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 'tools/memory_watcher')
-rw-r--r--tools/memory_watcher/memory_watcher.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/memory_watcher/memory_watcher.cc b/tools/memory_watcher/memory_watcher.cc
index 6e67793..fd835cb 100644
--- a/tools/memory_watcher/memory_watcher.cc
+++ b/tools/memory_watcher/memory_watcher.cc
@@ -10,16 +10,16 @@
#include "base/file_util.h"
#include "base/lock.h"
#include "base/logging.h"
-#include "base/stats_counters.h"
+#include "base/metrics/stats_counters.h"
#include "base/string_util.h"
#include "base/utf_string_conversions.h"
#include "tools/memory_watcher/call_stack.h"
#include "tools/memory_watcher/preamble_patcher.h"
-static StatsCounter mem_in_use("MemoryInUse.Bytes");
-static StatsCounter mem_in_use_blocks("MemoryInUse.Blocks");
-static StatsCounter mem_in_use_allocs("MemoryInUse.Allocs");
-static StatsCounter mem_in_use_frees("MemoryInUse.Frees");
+static base::StatsCounter mem_in_use("MemoryInUse.Bytes");
+static base::StatsCounter mem_in_use_blocks("MemoryInUse.Blocks");
+static base::StatsCounter mem_in_use_allocs("MemoryInUse.Allocs");
+static base::StatsCounter mem_in_use_frees("MemoryInUse.Frees");
// ---------------------------------------------------------------------