// 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. #include "components/power_bookmarks/common/power.h" namespace power_bookmarks { Power::Power(std::unique_ptr<sync_pb::PowerEntity> power_entity) { … } Power::Power(const sync_pb::PowerBookmarkSpecifics& specifics) { … } Power::~Power() = default; void Power::ToPowerBookmarkSpecifics( sync_pb::PowerBookmarkSpecifics* specifics) const { … } void Power::Merge(const Power& other) { … } std::unique_ptr<Power> Power::Clone() const { … } } // namespace power_bookmarks