Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(44)

Unified Diff: chrome/browser/history/top_sites.h

Issue 7259019: Move base/values.h into the base namespace. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 9 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: chrome/browser/history/top_sites.h
===================================================================
--- chrome/browser/history/top_sites.h (revision 92173)
+++ chrome/browser/history/top_sites.h (working copy)
@@ -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 @@
// 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_;

Powered by Google App Engine
This is Rietveld 408576698