| 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();
 | 
| 
 |