chromium/components/subresource_filter/core/common/ruleset_dealer.cc

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

#include "components/subresource_filter/core/common/ruleset_dealer.h"

#include "base/check.h"
#include "base/not_fatal_until.h"
#include "components/subresource_filter/core/common/memory_mapped_ruleset.h"

namespace subresource_filter {

RulesetDealer::RulesetDealer() {}

RulesetDealer::~RulesetDealer() = default;

void RulesetDealer::SetRulesetFile(base::File ruleset_file) {}

bool RulesetDealer::IsRulesetFileAvailable() const {}

scoped_refptr<const MemoryMappedRuleset> RulesetDealer::GetRuleset() {}

base::File RulesetDealer::DuplicateRulesetFile() {}

}  // namespace subresource_filter