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

Unified Diff: content/browser/webui/url_data_source_impl.cc

Issue 2544683002: [MD settings] i18n source stream filtering (Closed)
Patch Set: review nits Created 4 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
« no previous file with comments | « content/browser/webui/url_data_source_impl.h ('k') | content/browser/webui/web_ui_data_source_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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
« no previous file with comments | « content/browser/webui/url_data_source_impl.h ('k') | content/browser/webui/web_ui_data_source_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698