blob: 44e8bdaa3e835b02b77c7576703e41bf6becb05b [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "modules/quota/QuotaUtils.h"
#include "core/dom/ExecutionContext.h"
#include "services/service_manager/public/cpp/interface_provider.h"
namespace blink {
void ConnectToQuotaDispatcherHost(
ExecutionContext* execution_context,
mojom::blink::QuotaDispatcherHostRequest request) {
if (auto* interface_provider = execution_context->GetInterfaceProvider())
interface_provider->GetInterface(std::move(request));
}
} // namespace blink