chromium/chrome/browser/ui/webui/test_files_request_filter.cc

// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#include "chrome/browser/ui/webui/test_files_request_filter.h"

#include "base/files/file_util.h"
#include "base/functional/bind.h"
#include "base/memory/ref_counted_memory.h"
#include "base/path_service.h"
#include "base/strings/string_split.h"
#include "base/threading/thread_restrictions.h"
#include "chrome/common/chrome_paths.h"

namespace {

bool ShouldHandleTestFileRequestCallback(const std::string& path) {}

void HandleTestFileRequestCallback(
    const std::string& path,
    content::WebUIDataSource::GotDataCallback callback) {}

}  // namespace

namespace test {

content::WebUIDataSource::HandleRequestCallback GetTestFilesRequestFilter() {}

content::WebUIDataSource::ShouldHandleRequestCallback
GetTestShouldHandleRequest() {}

}  // namespace test