summaryrefslogtreecommitdiffstats
path: root/net/base/cookie_monster.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 /net/base/cookie_monster.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 'net/base/cookie_monster.h')
-rw-r--r--net/base/cookie_monster.h25
1 files changed, 14 insertions, 11 deletions
diff --git a/net/base/cookie_monster.h b/net/base/cookie_monster.h
index 33953d9..2f18283 100644
--- a/net/base/cookie_monster.h
+++ b/net/base/cookie_monster.h
@@ -22,7 +22,10 @@
#include "net/base/cookie_store.h"
class GURL;
+
+namespace base {
class Histogram;
+}
namespace net {
@@ -409,17 +412,17 @@ class CookieMonster : public CookieStore {
// Histogram variables; see CookieMonster::InitializeHistograms() in
// cookie_monster.cc for details.
- scoped_refptr<Histogram> histogram_expiration_duration_minutes_;
- scoped_refptr<Histogram> histogram_between_access_interval_minutes_;
- scoped_refptr<Histogram> histogram_evicted_last_access_minutes_;
- scoped_refptr<Histogram> histogram_count_;
- scoped_refptr<Histogram> histogram_domain_count_;
- scoped_refptr<Histogram> histogram_etldp1_count_;
- scoped_refptr<Histogram> histogram_domain_per_etldp1_count_;
- scoped_refptr<Histogram> histogram_number_duplicate_db_cookies_;
- scoped_refptr<Histogram> histogram_cookie_deletion_cause_;
- scoped_refptr<Histogram> histogram_time_get_;
- scoped_refptr<Histogram> histogram_time_load_;
+ scoped_refptr<base::Histogram> histogram_expiration_duration_minutes_;
+ scoped_refptr<base::Histogram> histogram_between_access_interval_minutes_;
+ scoped_refptr<base::Histogram> histogram_evicted_last_access_minutes_;
+ scoped_refptr<base::Histogram> histogram_count_;
+ scoped_refptr<base::Histogram> histogram_domain_count_;
+ scoped_refptr<base::Histogram> histogram_etldp1_count_;
+ scoped_refptr<base::Histogram> histogram_domain_per_etldp1_count_;
+ scoped_refptr<base::Histogram> histogram_number_duplicate_db_cookies_;
+ scoped_refptr<base::Histogram> histogram_cookie_deletion_cause_;
+ scoped_refptr<base::Histogram> histogram_time_get_;
+ scoped_refptr<base::Histogram> histogram_time_load_;
// Initialize the above variables; should only be called from
// the constructor.