// 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. #ifndef COMPONENTS_OPTIMIZATION_GUIDE_CORE_MEMORY_HINT_H_ #define COMPONENTS_OPTIMIZATION_GUIDE_CORE_MEMORY_HINT_H_ #include <optional> #include "base/time/time.h" #include "components/optimization_guide/proto/hint_cache.pb.h" #include "components/optimization_guide/proto/hints.pb.h" namespace optimization_guide { // A representation of a hint to be used by in-memory caches. class MemoryHint { … }; } // namespace optimization_guide #endif // COMPONENTS_OPTIMIZATION_GUIDE_CORE_MEMORY_HINT_H_