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

Unified Diff: chrome/browser/ui/webui/cookies_tree_model_util.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/ui/webui/cookies_tree_model_util.h
===================================================================
--- chrome/browser/ui/webui/cookies_tree_model_util.h (revision 92173)
+++ chrome/browser/ui/webui/cookies_tree_model_util.h (working copy)
@@ -9,8 +9,11 @@
#include <string>
class CookieTreeNode;
+
+namespace base {
class DictionaryValue;
class ListValue;
+}
namespace cookies_tree_model_util {
@@ -19,11 +22,11 @@
// Populate given |dict| with cookie tree node properties.
void GetCookieTreeNodeDictionary(const CookieTreeNode& node,
- DictionaryValue* dict);
+ base::DictionaryValue* dict);
// Append the children nodes of |parent| in specified range to |nodes| list.
void GetChildNodeList(CookieTreeNode* parent, int start, int count,
- ListValue* nodes);
+ base::ListValue* nodes);
// Gets tree node from |path| under |root|. Return NULL if |path| is not valid.
CookieTreeNode* GetTreeNodeFromPath(CookieTreeNode* root,
« no previous file with comments | « chrome/browser/ui/webui/cookies_tree_model_adapter.h ('k') | chrome/browser/ui/webui/downloads_dom_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698