// Copyright 2021 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef CHROME_BROWSER_SHARE_SHARE_HISTORY_H_ #define CHROME_BROWSER_SHARE_SHARE_HISTORY_H_ #include <string> #include <vector> #include "base/callback_list.h" #include "base/memory/weak_ptr.h" #include "base/supports_user_data.h" #include "build/build_config.h" #include "chrome/browser/share/proto/share_history_message.pb.h" #include "components/leveldb_proto/public/proto_database.h" class Profile; namespace sharing { // A ShareHistory instance stores and provides access to the history of which // targets the user has shared to. This history is stored per-profile and // cleared when the user clears browsing data. class ShareHistory : public base::SupportsUserData::Data { … }; } // namespace sharing #endif // CHROME_BROWSER_SHARE_SHARE_HISTORY_H_