// Copyright 2019 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/services/storage/origin_context_impl.h" #include "components/services/storage/partition_impl.h" namespace storage { OriginContextImpl::OriginContextImpl(PartitionImpl* partition, const url::Origin& origin) : … { … } OriginContextImpl::~OriginContextImpl() = default; void OriginContextImpl::BindReceiver( mojo::PendingReceiver<mojom::OriginContext> receiver) { … } void OriginContextImpl::OnDisconnect() { … } } // namespace storage