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. |