#ifndef GOOGLE_APIS_GCM_ENGINE_REGISTRATION_INFO_H_
#define GOOGLE_APIS_GCM_ENGINE_REGISTRATION_INFO_H_
#include <map>
#include <string>
#include <vector>
#include "base/basictypes.h"
#include "base/memory/linked_ptr.h"
#include "google_apis/gcm/base/gcm_export.h"
namespace gcm {
struct GCM_EXPORT RegistrationInfo {
  RegistrationInfo();
  ~RegistrationInfo();
  std::string SerializeAsString() const;
  bool ParseFromString(const std::string& value);
  std::vector<std::string> sender_ids;
  std::string registration_id;
};
typedef std::map<std::string, linked_ptr<RegistrationInfo> >
RegistrationInfoMap;
}  
#endif