#ifndef COMPONENTS_GCM_DRIVER_REGISTRATION_INFO_H_
#define COMPONENTS_GCM_DRIVER_REGISTRATION_INFO_H_
#include <map>
#include <memory>
#include <string>
#include <vector>
#include "base/memory/ref_counted.h"
#include "base/time/time.h"
namespace gcm {
struct RegistrationInfo : public base::RefCounted<RegistrationInfo> { … };
struct GCMRegistrationInfo final : public RegistrationInfo { … };
struct InstanceIDTokenInfo final : public RegistrationInfo { … };
struct RegistrationInfoComparer { … };
RegistrationInfoMap;
bool ExistsGCMRegistrationInMap(const RegistrationInfoMap& map,
const std::string& app_id);
}
#endif