summaryrefslogtreecommitdiffstats
path: root/chromium/google_apis/gcm/gcm_client_impl.h
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/google_apis/gcm/gcm_client_impl.h')
-rw-r--r--chromium/google_apis/gcm/gcm_client_impl.h39
1 files changed, 0 insertions, 39 deletions
diff --git a/chromium/google_apis/gcm/gcm_client_impl.h b/chromium/google_apis/gcm/gcm_client_impl.h
deleted file mode 100644
index 46f910e546a..00000000000
--- a/chromium/google_apis/gcm/gcm_client_impl.h
+++ /dev/null
@@ -1,39 +0,0 @@
-// 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_