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

Unified Diff: components/dom_distiller/webui/dom_distiller_handler.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
Index: components/dom_distiller/webui/dom_distiller_handler.cc
diff --git a/components/dom_distiller/webui/dom_distiller_handler.cc b/components/dom_distiller/webui/dom_distiller_handler.cc
index 9067b717cfce9edd01909f637cc739e92c1df85b..3b8eee6f88e73a7e80be88b530e6d4254d3ca4c6 100644
--- a/components/dom_distiller/webui/dom_distiller_handler.cc
+++ b/components/dom_distiller/webui/dom_distiller_handler.cc
@@ -36,7 +36,7 @@ void DomDistillerHandler::RegisterMessages() {
base::Unretained(this)));
}
-void DomDistillerHandler::HandleAddArticle(const ListValue* args) {
+void DomDistillerHandler::HandleAddArticle(const base::ListValue* args) {
std::string url;
args->GetString(0, &url);
GURL gurl(url);
@@ -50,14 +50,14 @@ void DomDistillerHandler::HandleAddArticle(const ListValue* args) {
}
}
-void DomDistillerHandler::HandleSelectArticle(const ListValue* args) {
+void DomDistillerHandler::HandleSelectArticle(const base::ListValue* args) {
std::string entry_id;
args->GetString(0, &entry_id);
// TODO(nyquist): Do something here.
}
-void DomDistillerHandler::HandleRequestEntries(const ListValue* args) {
+void DomDistillerHandler::HandleRequestEntries(const base::ListValue* args) {
base::ListValue entries;
const std::vector<ArticleEntry>& entries_specifics = service_->GetEntries();
for (std::vector<ArticleEntry>::const_iterator it = entries_specifics.begin();
« no previous file with comments | « components/dom_distiller/webui/dom_distiller_handler.h ('k') | components/policy/core/browser/configuration_policy_handler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698