// 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_MONITORING_GCM_STATS_RECORDER_H_ #define GOOGLE_APIS_GCM_MONITORING_GCM_STATS_RECORDER_H_ #include <stdint.h> #include <string> #include <vector> #include "google_apis/gcm/base/gcm_export.h" #include "google_apis/gcm/engine/connection_factory.h" #include "google_apis/gcm/engine/mcs_client.h" #include "google_apis/gcm/engine/registration_request.h" #include "google_apis/gcm/engine/unregistration_request.h" namespace gcm { // Defines the interface to record GCM internal stats and activities for // debugging purpose. class GCM_EXPORT GCMStatsRecorder { … }; } // namespace gcm #endif // GOOGLE_APIS_GCM_MONITORING_GCM_STATS_RECORDER_H_