// Copyright 2018 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_SYNC_SESSIONS_SESSIONS_GLOBAL_ID_MAPPER_H_ #define COMPONENTS_SYNC_SESSIONS_SESSIONS_GLOBAL_ID_MAPPER_H_ #include <map> #include <vector> #include "base/time/time.h" #include "components/sync_user_events/global_id_mapper.h" namespace sync_sessions { // Actual implementation of GlobalIdMapper used by sessions. class SessionsGlobalIdMapper : public syncer::GlobalIdMapper { … }; } // namespace sync_sessions #endif // COMPONENTS_SYNC_SESSIONS_SESSIONS_GLOBAL_ID_MAPPER_H_