#ifndef COMPONENTS_UPDATE_CLIENT_TEST_ACTIVITY_DATA_SERVICE_H_
#define COMPONENTS_UPDATE_CLIENT_TEST_ACTIVITY_DATA_SERVICE_H_
#include <map>
#include <set>
#include <string>
#include <vector>
#include "base/functional/callback_forward.h"
#include "components/update_client/activity_data_service.h"
namespace update_client {
class PersistedData;
namespace test {
void SetDateLastData(PersistedData* metadata,
const std::vector<std::string>& ids,
int daynum);
bool GetActiveBit(PersistedData* metadata, const std::string& id);
}
class TestActivityDataService final : public ActivityDataService { … };
}
#endif