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

Unified Diff: content/renderer/web_ui_extension.cc

Issue 108603005: Update uses of Value in chromeos/, cloud_print/, components/, content/ to use the base:: namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years 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 | « content/renderer/v8_value_converter_impl_unittest.cc ('k') | content/shell/browser/shell_net_log.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/renderer/web_ui_extension.cc
diff --git a/content/renderer/web_ui_extension.cc b/content/renderer/web_ui_extension.cc
index f887e9d765e09ce47777f2f44b5c3a5bcf56499e..b49241ef4c6aee19ea52254fa48709d8be1e4cf3 100644
--- a/content/renderer/web_ui_extension.cc
+++ b/content/renderer/web_ui_extension.cc
@@ -120,9 +120,9 @@ void WebUIExtensionWrapper::Send(
// If they've provided an optional message parameter, convert that into a
// Value to send to the browser process.
- scoped_ptr<ListValue> content;
+ scoped_ptr<base::ListValue> content;
if (args[1]->IsUndefined()) {
- content.reset(new ListValue());
+ content.reset(new base::ListValue());
} else {
if (!args[1]->IsObject())
return;
« no previous file with comments | « content/renderer/v8_value_converter_impl_unittest.cc ('k') | content/shell/browser/shell_net_log.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698