// Copyright 2020 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/optimization_guide/core/memory_hint.h" namespace optimization_guide { MemoryHint::MemoryHint(const std::optional<base::Time>& expiry_time, std::unique_ptr<proto::Hint> hint) : … { … } MemoryHint::MemoryHint(const base::Time expiry_time, proto::Hint&& hint) : … { … } MemoryHint::~MemoryHint() = default; } // namespace optimization_guide