// Copyright 2018 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "content/public/test/test_web_ui_data_source.h" #include "base/memory/ptr_util.h" #include "base/memory/scoped_refptr.h" #include "content/browser/webui/web_ui_data_source_impl.h" namespace content { class WebUIDataSourceImplWithPublicData : public WebUIDataSourceImpl { … }; class TestWebUIDataSourceImpl : public TestWebUIDataSource { … }; // static std::unique_ptr<TestWebUIDataSource> TestWebUIDataSource::Create( const std::string& source_name) { … } } // namespace content