blob: a89a14dadf1775c2f8f91a936ef914905810fd70 [file] [log] [blame]
Avi Drissman4a8573c2022-09-09 19:35:541// Copyright 2020 The Chromium Authors
Joshua Pawlicki9b52edeb2020-04-21 15:26:082// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "chrome/updater/external_constants.h"
Joshua Pawlicki9b52edeb2020-04-21 15:26:086
Joshua Pawlicki34aacc12021-08-24 21:22:217#include "base/memory/scoped_refptr.h"
Joshua Pawlicki9b52edeb2020-04-21 15:26:088
9namespace updater {
10
Joshua Pawlicki9b52edeb2020-04-21 15:26:0811ExternalConstants::ExternalConstants(
Joshua Pawlicki34aacc12021-08-24 21:22:2112 scoped_refptr<ExternalConstants> next_provider)
13 : next_provider_(next_provider) {}
Joshua Pawlicki9b52edeb2020-04-21 15:26:0814
15ExternalConstants::~ExternalConstants() = default;
16
Joshua Pawlicki9b52edeb2020-04-21 15:26:0817} // namespace updater