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

Unified Diff: components/dom_distiller/webui/dom_distiller_handler.h

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.h
diff --git a/components/dom_distiller/webui/dom_distiller_handler.h b/components/dom_distiller/webui/dom_distiller_handler.h
index e328633bb71680e7145ef2441f2df15b92406637..24a951d5086e7139970f7cb843d82269f11f1f52 100644
--- a/components/dom_distiller/webui/dom_distiller_handler.h
+++ b/components/dom_distiller/webui/dom_distiller_handler.h
@@ -29,16 +29,16 @@ class DomDistillerHandler : public content::WebUIMessageHandler {
// Callback from JavaScript for the "requestEntries" message. This
// requests the list of entries and returns it to the front end by calling
// "onReceivedEntries". There are no JavaScript arguments to this method.
- void HandleRequestEntries(const ListValue* args);
+ void HandleRequestEntries(const base::ListValue* args);
// Callback from JavaScript for when an article should be added. The first
// element in |args| should be a string representing the URL to be added.
- void HandleAddArticle(const ListValue* args);
+ void HandleAddArticle(const base::ListValue* args);
// Callback from JavaScript for when an article is selected. The first element
// in |args| should be a string representing the ID of the entry to be
// selected.
- void HandleSelectArticle(const ListValue* args);
+ void HandleSelectArticle(const base::ListValue* args);
private:
// Callback from DomDistillerService when an article is available.

Powered by Google App Engine
This is Rietveld 408576698