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

Unified Diff: content/browser/accessibility/accessibility_tree_formatter.cc

Issue 16915006: Convert most of extensions and some other random stuff to using the base namespace for Values. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 6 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: content/browser/accessibility/accessibility_tree_formatter.cc
diff --git a/content/browser/accessibility/accessibility_tree_formatter.cc b/content/browser/accessibility/accessibility_tree_formatter.cc
index bdbe4d5579b67f6befa6f641acddc1e8e04abe60..1ad1a7f13325b0b5b8578644b50d184e9180f4f4 100644
--- a/content/browser/accessibility/accessibility_tree_formatter.cc
+++ b/content/browser/accessibility/accessibility_tree_formatter.cc
@@ -64,7 +64,7 @@ void AccessibilityTreeFormatter::RecursiveBuildAccessibilityTree(
const BrowserAccessibility& node, base::DictionaryValue* dict) {
AddProperties(node, dict);
- ListValue* children = new ListValue;
+ base::ListValue* children = new base::ListValue;
dict->Set(kChildrenDictAttr, children);
if (!IncludeChildren(node))
return;

Powered by Google App Engine
This is Rietveld 408576698