blob: 46f910e546a11a4f767eb44f80524f57762522a1 [file] [log] [blame]
// Copyright 2013 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#ifndef GOOGLE_APIS_GCM_GCM_CLIENT_IMPL_H_
#define GOOGLE_APIS_GCM_GCM_CLIENT_IMPL_H_
#include "base/compiler_specific.h"
#include "google_apis/gcm/gcm_client.h"
namespace gcm {
class GCMClientImpl : public GCMClient {
public:
GCMClientImpl();
virtual ~GCMClientImpl();
// Overridden from GCMClient:
virtual void CheckIn(const std::string& username,
Delegate* delegate) OVERRIDE;
virtual void Register(const std::string& username,
const std::string& app_id,
const std::string& cert,
const std::vector<std::string>& sender_ids) OVERRIDE;
virtual void Unregister(const std::string& username,
const std::string& app_id) OVERRIDE;
virtual void Send(const std::string& username,
const std::string& app_id,
const std::string& receiver_id,
const OutgoingMessage& message) OVERRIDE;
virtual bool IsLoading() const OVERRIDE;
private:
DISALLOW_COPY_AND_ASSIGN(GCMClientImpl);
};
} // namespace gcm
#endif // GOOGLE_APIS_GCM_GCM_CLIENT_IMPL_H_