diff options
author | dmazzoni@chromium.org <dmazzoni@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-12 19:15:03 +0000 |
---|---|---|
committer | dmazzoni@chromium.org <dmazzoni@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2011-07-12 19:15:03 +0000 |
commit | f3a1c64a4d81c412273ed567536f23c2c14813a2 (patch) | |
tree | f0ced21805b18546e879413e4f808dd4f683c534 /chrome/browser/metrics/metrics_log.h | |
parent | 2338319a9acbaecba44243740b3f01b5c408a78a (diff) | |
download | chromium_src-f3a1c64a4d81c412273ed567536f23c2c14813a2.zip chromium_src-f3a1c64a4d81c412273ed567536f23c2c14813a2.tar.gz chromium_src-f3a1c64a4d81c412273ed567536f23c2c14813a2.tar.bz2 |
Move base/values.h into the base namespace. This includes a cros DEPS roll
with a minor change to that code since libcros also uses base/values.h.
BUG=88666
TEST=none
Review URL: http://codereview.chromium.org/7259019
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@92208 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/metrics/metrics_log.h')
-rw-r--r-- | chrome/browser/metrics/metrics_log.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/chrome/browser/metrics/metrics_log.h b/chrome/browser/metrics/metrics_log.h index 374889d..36f2ec5 100644 --- a/chrome/browser/metrics/metrics_log.h +++ b/chrome/browser/metrics/metrics_log.h @@ -14,10 +14,13 @@ #include "content/common/page_transition_types.h" struct AutocompleteLog; -class DictionaryValue; class GURL; class PrefService; +namespace base { +class DictionaryValue; +} + namespace webkit { namespace npapi { struct WebPluginInfo; @@ -42,7 +45,7 @@ class MetricsLog : public MetricsLogBase { // dictionary giving the metrics for the profile. void RecordEnvironment( const std::vector<webkit::npapi::WebPluginInfo>& plugin_list, - const DictionaryValue* profile_metrics); + const base::DictionaryValue* profile_metrics); // Records the input text, available choices, and selected entry when the // user uses the Omnibox to open a URL. @@ -96,12 +99,13 @@ class MetricsLog : public MetricsLogBase { // Writes all profile metrics. This invokes WriteProfileMetrics for each key // in all_profiles_metrics that starts with kProfilePrefix. - void WriteAllProfilesMetrics(const DictionaryValue& all_profiles_metrics); + void WriteAllProfilesMetrics( + const base::DictionaryValue& all_profiles_metrics); // Writes metrics for the profile identified by key. This writes all // key/value pairs in profile_metrics. void WriteProfileMetrics(const std::string& key, - const DictionaryValue& profile_metrics); + const base::DictionaryValue& profile_metrics); DISALLOW_COPY_AND_ASSIGN(MetricsLog); }; |