OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #ifndef CHROME_BROWSER_EXTENSIONS_API_GCM_GCM_API_H_ | 5 #ifndef CHROME_BROWSER_EXTENSIONS_API_GCM_GCM_API_H_ |
6 #define CHROME_BROWSER_EXTENSIONS_API_GCM_GCM_API_H_ | 6 #define CHROME_BROWSER_EXTENSIONS_API_GCM_GCM_API_H_ |
7 | 7 |
8 #include "chrome/common/extensions/api/gcm.h" | 8 #include "chrome/common/extensions/api/gcm.h" |
9 #include "extensions/browser/event_router.h" | |
10 #include "extensions/browser/extension_function.h" | 9 #include "extensions/browser/extension_function.h" |
11 #include "google_apis/gcm/gcm_client.h" | 10 #include "google_apis/gcm/gcm_client.h" |
12 | 11 |
13 namespace gcm { | 12 namespace gcm { |
| 13 class GCMDriver; |
14 class GCMProfileService; | 14 class GCMProfileService; |
15 } // namespace gcm | 15 } // namespace gcm |
16 | 16 |
17 class Profile; | 17 class Profile; |
18 | 18 |
19 namespace extensions { | 19 namespace extensions { |
20 | 20 |
21 class GcmApiFunction : public AsyncExtensionFunction { | 21 class GcmApiFunction : public AsyncExtensionFunction { |
22 public: | 22 public: |
23 GcmApiFunction() {} | 23 GcmApiFunction() {} |
24 | 24 |
25 protected: | 25 protected: |
26 virtual ~GcmApiFunction() {} | 26 virtual ~GcmApiFunction() {} |
27 | 27 |
28 // ExtensionFunction: | 28 // ExtensionFunction: |
29 virtual bool RunAsync() OVERRIDE FINAL; | 29 virtual bool RunAsync() OVERRIDE FINAL; |
30 | 30 |
31 // Actual implementation of specific functions. | 31 // Actual implementation of specific functions. |
32 virtual bool DoWork() = 0; | 32 virtual bool DoWork() = 0; |
33 | 33 |
34 // Checks that the GCM API is enabled. | 34 // Checks that the GCM API is enabled. |
35 bool IsGcmApiEnabled() const; | 35 bool IsGcmApiEnabled() const; |
36 | 36 |
37 gcm::GCMProfileService* GCMProfileService() const; | 37 gcm::GCMDriver* GetGCMDriver() const; |
38 }; | 38 }; |
39 | 39 |
40 class GcmRegisterFunction : public GcmApiFunction { | 40 class GcmRegisterFunction : public GcmApiFunction { |
41 public: | 41 public: |
42 DECLARE_EXTENSION_FUNCTION("gcm.register", GCM_REGISTER); | 42 DECLARE_EXTENSION_FUNCTION("gcm.register", GCM_REGISTER); |
43 | 43 |
44 GcmRegisterFunction(); | 44 GcmRegisterFunction(); |
45 | 45 |
46 protected: | 46 protected: |
47 virtual ~GcmRegisterFunction(); | 47 virtual ~GcmRegisterFunction(); |
(...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
84 | 84 |
85 private: | 85 private: |
86 void CompleteFunctionWithResult(const std::string& message_id, | 86 void CompleteFunctionWithResult(const std::string& message_id, |
87 gcm::GCMClient::Result result); | 87 gcm::GCMClient::Result result); |
88 | 88 |
89 // Validates that message data do not carry invalid keys and fit into | 89 // Validates that message data do not carry invalid keys and fit into |
90 // allowable size limits. | 90 // allowable size limits. |
91 bool ValidateMessageData(const gcm::GCMClient::MessageData& data) const; | 91 bool ValidateMessageData(const gcm::GCMClient::MessageData& data) const; |
92 }; | 92 }; |
93 | 93 |
94 class GcmJsEventRouter : public EventRouter::Observer { | 94 class GcmJsEventRouter { |
95 public: | 95 public: |
96 explicit GcmJsEventRouter(Profile* profile); | 96 explicit GcmJsEventRouter(Profile* profile); |
97 | 97 |
98 virtual ~GcmJsEventRouter(); | 98 virtual ~GcmJsEventRouter(); |
99 | 99 |
100 void OnMessage(const std::string& app_id, | 100 void OnMessage(const std::string& app_id, |
101 const gcm::GCMClient::IncomingMessage& message); | 101 const gcm::GCMClient::IncomingMessage& message); |
102 void OnMessagesDeleted(const std::string& app_id); | 102 void OnMessagesDeleted(const std::string& app_id); |
103 void OnSendError(const std::string& app_id, | 103 void OnSendError(const std::string& app_id, |
104 const gcm::GCMClient::SendErrorDetails& send_error_details); | 104 const gcm::GCMClient::SendErrorDetails& send_error_details); |
105 | 105 |
106 // EventRouter::Observer: | |
107 virtual void OnListenerAdded(const EventListenerInfo& details) OVERRIDE; | |
108 | |
109 private: | 106 private: |
110 // The application we route the event to is running in context of the | 107 // The application we route the event to is running in context of the |
111 // |profile_| and the latter outlives the event router. | 108 // |profile_| and the latter outlives the event router. |
112 Profile* profile_; | 109 Profile* profile_; |
113 }; | 110 }; |
114 | 111 |
115 } // namespace extensions | 112 } // namespace extensions |
116 | 113 |
117 #endif // CHROME_BROWSER_EXTENSIONS_API_GCM_GCM_API_H_ | 114 #endif // CHROME_BROWSER_EXTENSIONS_API_GCM_GCM_API_H_ |
OLD | NEW |