diff options
Diffstat (limited to 'chrome/browser/history/top_sites.h')
-rw-r--r-- | chrome/browser/history/top_sites.h | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/chrome/browser/history/top_sites.h b/chrome/browser/history/top_sites.h index c69a61c..fc99b28 100644 --- a/chrome/browser/history/top_sites.h +++ b/chrome/browser/history/top_sites.h @@ -25,11 +25,14 @@ #include "content/browser/cancelable_request.h" #include "googleurl/src/gurl.h" -class DictionaryValue; class FilePath; class SkBitmap; class Profile; +namespace base { +class DictionaryValue; +} + namespace history { class TopSitesCache; @@ -361,12 +364,12 @@ class TopSites // storing all URLs, but filtering on access. It is a dictionary, // key is the URL, value is a dummy value. This is owned by the // PrefService. - const DictionaryValue* blacklist_; + const base::DictionaryValue* blacklist_; // This is a dictionary for the pinned URLs for the the most visited part of // the new tab page. Key is the URL, value is index where it is pinned at (may // be the same as key). This is owned by the PrefService. - const DictionaryValue* pinned_urls_; + const base::DictionaryValue* pinned_urls_; // See description above HistoryLoadState. HistoryLoadState history_state_; |