Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(195)

Side by Side Diff: chrome/browser/extensions/api/gcm/gcm_api.h

Issue 270873002: Extract GCMClient data types into separate gcm_types.h (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Reupload Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/extensions/api/gcm/gcm_api.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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" 9 #include "extensions/browser/event_router.h"
10 #include "extensions/browser/extension_function.h" 10 #include "extensions/browser/extension_function.h"
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
44 GcmRegisterFunction(); 44 GcmRegisterFunction();
45 45
46 protected: 46 protected:
47 virtual ~GcmRegisterFunction(); 47 virtual ~GcmRegisterFunction();
48 48
49 // Register function implementation. 49 // Register function implementation.
50 virtual bool DoWork() OVERRIDE FINAL; 50 virtual bool DoWork() OVERRIDE FINAL;
51 51
52 private: 52 private:
53 void CompleteFunctionWithResult(const std::string& registration_id, 53 void CompleteFunctionWithResult(const std::string& registration_id,
54 gcm::GCMClient::Result result); 54 gcm::Result result);
55 }; 55 };
56 56
57 class GcmUnregisterFunction : public GcmApiFunction { 57 class GcmUnregisterFunction : public GcmApiFunction {
58 public: 58 public:
59 DECLARE_EXTENSION_FUNCTION("gcm.unregister", GCM_UNREGISTER); 59 DECLARE_EXTENSION_FUNCTION("gcm.unregister", GCM_UNREGISTER);
60 60
61 GcmUnregisterFunction(); 61 GcmUnregisterFunction();
62 62
63 protected: 63 protected:
64 virtual ~GcmUnregisterFunction(); 64 virtual ~GcmUnregisterFunction();
65 65
66 // Register function implementation. 66 // Register function implementation.
67 virtual bool DoWork() OVERRIDE FINAL; 67 virtual bool DoWork() OVERRIDE FINAL;
68 68
69 private: 69 private:
70 void CompleteFunctionWithResult(gcm::GCMClient::Result result); 70 void CompleteFunctionWithResult(gcm::Result result);
71 }; 71 };
72 72
73 class GcmSendFunction : public GcmApiFunction { 73 class GcmSendFunction : public GcmApiFunction {
74 public: 74 public:
75 DECLARE_EXTENSION_FUNCTION("gcm.send", GCM_SEND); 75 DECLARE_EXTENSION_FUNCTION("gcm.send", GCM_SEND);
76 76
77 GcmSendFunction(); 77 GcmSendFunction();
78 78
79 protected: 79 protected:
80 virtual ~GcmSendFunction(); 80 virtual ~GcmSendFunction();
81 81
82 // Send function implementation. 82 // Send function implementation.
83 virtual bool DoWork() OVERRIDE FINAL; 83 virtual bool DoWork() OVERRIDE FINAL;
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::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::MessageData& data) const;
92 }; 92 };
93 93
94 class GcmJsEventRouter : public EventRouter::Observer { 94 class GcmJsEventRouter : public EventRouter::Observer {
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::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::SendErrorDetails& send_error_details);
105 105
106 // EventRouter::Observer: 106 // EventRouter::Observer:
107 virtual void OnListenerAdded(const EventListenerInfo& details) OVERRIDE; 107 virtual void OnListenerAdded(const EventListenerInfo& details) OVERRIDE;
108 108
109 private: 109 private:
110 // The application we route the event to is running in context of the 110 // The application we route the event to is running in context of the
111 // |profile_| and the latter outlives the event router. 111 // |profile_| and the latter outlives the event router.
112 Profile* profile_; 112 Profile* profile_;
113 }; 113 };
114 114
115 } // namespace extensions 115 } // namespace extensions
116 116
117 #endif // CHROME_BROWSER_EXTENSIONS_API_GCM_GCM_API_H_ 117 #endif // CHROME_BROWSER_EXTENSIONS_API_GCM_GCM_API_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/extensions/api/gcm/gcm_api.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698