| 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,
|
|
|