1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #ifndef COMPONENTS_GCM_DRIVER_GCM_DRIVER_ANDROID_H
6 #define COMPONENTS_GCM_DRIVER_GCM_DRIVER_ANDROID_H
10 #include "base/android/scoped_java_ref.h"
11 #include "base/compiler_specific.h"
12 #include "base/macros.h"
13 #include "components/gcm_driver/gcm_driver.h"
17 // GCMDriver implementation for Android, using Android GCM APIs.
18 class GCMDriverAndroid
: public GCMDriver
{
21 virtual ~GCMDriverAndroid();
23 // Methods called from Java via JNI:
24 void OnRegisterFinished(JNIEnv
* env
,
27 jstring registration_id
,
29 void OnUnregisterFinished(JNIEnv
* env
,
33 void OnMessageReceived(JNIEnv
* env
,
38 jobjectArray data_keys_and_values
);
39 void OnMessagesDeleted(JNIEnv
* env
,
43 // Register JNI methods.
44 static bool RegisterBindings(JNIEnv
* env
);
46 // GCMDriver implementation:
47 virtual void OnSignedIn() OVERRIDE
;
48 virtual void Purge() OVERRIDE
;
49 virtual void Enable() OVERRIDE
;
50 virtual void AddConnectionObserver(GCMConnectionObserver
* observer
) OVERRIDE
;
51 virtual void RemoveConnectionObserver(
52 GCMConnectionObserver
* observer
) OVERRIDE
;
53 virtual void Disable() OVERRIDE
;
54 virtual GCMClient
* GetGCMClientForTesting() const OVERRIDE
;
55 virtual bool IsStarted() const OVERRIDE
;
56 virtual bool IsConnected() const OVERRIDE
;
57 virtual void GetGCMStatistics(const GetGCMStatisticsCallback
& callback
,
58 bool clear_logs
) OVERRIDE
;
59 virtual void SetGCMRecording(const GetGCMStatisticsCallback
& callback
,
60 bool recording
) OVERRIDE
;
61 virtual void UpdateAccountMapping(
62 const AccountMapping
& account_mapping
) OVERRIDE
;
63 virtual void RemoveAccountMapping(const std::string
& account_id
) OVERRIDE
;
66 // GCMDriver implementation:
67 virtual GCMClient::Result
EnsureStarted() OVERRIDE
;
68 virtual void RegisterImpl(
69 const std::string
& app_id
,
70 const std::vector
<std::string
>& sender_ids
) OVERRIDE
;
71 virtual void UnregisterImpl(const std::string
& app_id
) OVERRIDE
;
72 virtual void SendImpl(const std::string
& app_id
,
73 const std::string
& receiver_id
,
74 const GCMClient::OutgoingMessage
& message
) OVERRIDE
;
77 base::android::ScopedJavaGlobalRef
<jobject
> java_ref_
;
79 DISALLOW_COPY_AND_ASSIGN(GCMDriverAndroid
);
84 #endif // COMPONENTS_GCM_DRIVER_GCM_DRIVER_ANDROID_H