// Copyright 2014 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef GOOGLE_APIS_GCM_ENGINE_GSERVICES_SETTINGS_H_ #define GOOGLE_APIS_GCM_ENGINE_GSERVICES_SETTINGS_H_ #include <map> #include <string> #include "base/memory/weak_ptr.h" #include "base/time/time.h" #include "google_apis/gcm/base/gcm_export.h" #include "google_apis/gcm/engine/gcm_store.h" #include "google_apis/gcm/protocol/checkin.pb.h" #include "url/gurl.h" namespace gcm { // Class responsible for handling G-services settings. It takes care of // extracting them from checkin response and storing in GCMStore. class GCM_EXPORT GServicesSettings { … }; } // namespace gcm #endif // GOOGLE_APIS_GCM_ENGINE_GSERVICES_SETTINGS_H_