| Index: content/browser/webui/url_data_source_impl.cc
|
| diff --git a/content/browser/webui/url_data_source_impl.cc b/content/browser/webui/url_data_source_impl.cc
|
| index 2ad8bc55e7469add854027c9cf3266f4d80a7c05..1794af3b06bc79d03ee8aa82095809bcabbedfe3 100644
|
| --- a/content/browser/webui/url_data_source_impl.cc
|
| +++ b/content/browser/webui/url_data_source_impl.cc
|
| @@ -4,6 +4,8 @@
|
|
|
| #include "content/browser/webui/url_data_source_impl.h"
|
|
|
| +#include <utility>
|
| +
|
| #include "base/bind.h"
|
| #include "base/memory/ref_counted_memory.h"
|
| #include "base/strings/string_util.h"
|
| @@ -15,10 +17,7 @@ namespace content {
|
|
|
| URLDataSourceImpl::URLDataSourceImpl(const std::string& source_name,
|
| URLDataSource* source)
|
| - : source_name_(source_name),
|
| - backend_(NULL),
|
| - source_(source) {
|
| -}
|
| + : source_name_(source_name), backend_(nullptr), source_(source) {}
|
|
|
| URLDataSourceImpl::~URLDataSourceImpl() {
|
| }
|
| @@ -57,4 +56,8 @@ void URLDataSourceImpl::SendResponseOnIOThread(
|
| backend_->DataAvailable(request_id, bytes.get());
|
| }
|
|
|
| +const ui::TemplateReplacements* URLDataSourceImpl::GetReplacements() const {
|
| + return nullptr;
|
| +}
|
| +
|
| } // namespace content
|
|
|