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

Unified Diff: chrome/browser/ui/webui/cookies_tree_model_adapter.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
« no previous file with comments | « chrome/browser/ui/webui/constrained_html_ui.h ('k') | chrome/browser/ui/webui/cookies_tree_model_util.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/ui/webui/cookies_tree_model_adapter.h
===================================================================
--- chrome/browser/ui/webui/cookies_tree_model_adapter.h (revision 92173)
+++ chrome/browser/ui/webui/cookies_tree_model_adapter.h (working copy)
@@ -9,9 +9,12 @@
#include "base/compiler_specific.h"
#include "chrome/browser/cookies_tree_model.h"
+class WebUI;
+
+namespace base {
class ListValue;
class Value;
-class WebUI;
+}
// CookiesTreeModelAdapter binds a CookiesTreeModel with a JS tree. It observes
// tree model changes and forwards them to JS tree. It also provides a
@@ -45,7 +48,7 @@
// JS callback that gets the tree node using the tree path info in |args| and
// call SendChildren to pass back children nodes data to WebUI.
- void RequestChildren(const ListValue* args);
+ void RequestChildren(const base::ListValue* args);
// Get children nodes data and pass it to 'CookiesTree.loadChildren' to
// update the WebUI.
@@ -53,7 +56,7 @@
// Helper function to get a Value* representing id of |node|.
// Caller needs to free the returned Value.
- Value* GetTreeNodeId(CookieTreeNode* node);
+ base::Value* GetTreeNodeId(CookieTreeNode* node);
// Hosting WebUI of the js tree.
WebUI* web_ui_;
« no previous file with comments | « chrome/browser/ui/webui/constrained_html_ui.h ('k') | chrome/browser/ui/webui/cookies_tree_model_util.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698