1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4 
5 #include "content/browser/webui/url_data_source_impl.h"
6 
7 #include <utility>
8 
9 #include "base/bind.h"
10 #include "base/memory/ref_counted_memory.h"
11 #include "base/strings/string_util.h"
12 #include "base/task/post_task.h"
13 #include "content/browser/webui/url_data_manager_backend.h"
14 #include "content/public/browser/browser_task_traits.h"
15 #include "content/public/browser/browser_thread.h"
16 #include "content/public/browser/url_data_source.h"
17 
18 namespace content {
19 
URLDataSourceImpl(const std::string & source_name,std::unique_ptr<URLDataSource> source)20 URLDataSourceImpl::URLDataSourceImpl(const std::string& source_name,
21                                      std::unique_ptr<URLDataSource> source)
22     : source_name_(source_name), source_(std::move(source)) {}
23 
~URLDataSourceImpl()24 URLDataSourceImpl::~URLDataSourceImpl() {
25 }
26 
IsWebUIDataSourceImpl() const27 bool URLDataSourceImpl::IsWebUIDataSourceImpl() const {
28   return false;
29 }
30 
31 }  // namespace content
32