// Copyright 2022 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_POWER_BOOKMARKS_COMMON_POWER_OVERVIEW_H_ #define COMPONENTS_POWER_BOOKMARKS_COMMON_POWER_OVERVIEW_H_ #include <cstddef> #include <memory> namespace power_bookmarks { class Power; // Class to encapsulate an overview of a Power. This class represents the // "first" Power, what qualifies as first depends on the call, and the total // count of the Powers of the same type. class PowerOverview { … }; } // namespace power_bookmarks #endif // COMPONENTS_POWER_BOOKMARKS_COMMON_POWER_OVERVIEW_H_