OLD | NEW |
---|---|
1 // Copyright 2014 The Chromium Authors. All rights reserved. | 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 | 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 COMPONENTS_COPRESENCE_PUBLIC_COPRESENCE_CLIENT_DELEGATE_H_ | 5 #ifndef COMPONENTS_COPRESENCE_PUBLIC_COPRESENCE_CLIENT_DELEGATE_H_ |
6 #define COMPONENTS_COPRESENCE_PUBLIC_COPRESENCE_CLIENT_DELEGATE_H_ | 6 #define COMPONENTS_COPRESENCE_PUBLIC_COPRESENCE_CLIENT_DELEGATE_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 #include <vector> | 9 #include <vector> |
10 | 10 |
11 #include "base/callback_forward.h" | 11 #include "base/callback_forward.h" |
12 | 12 |
13 namespace net { | 13 namespace net { |
14 class URLRequestContextGetter; | 14 class URLRequestContextGetter; |
15 } | 15 } |
16 | 16 |
17 namespace copresence { | 17 namespace copresence { |
18 | 18 |
19 class DeviceFingerprint; | |
19 class Message; | 20 class Message; |
20 class WhispernetClient; | 21 class WhispernetClient; |
21 | 22 |
22 enum CopresenceStatus { SUCCESS, FAIL }; | 23 enum CopresenceStatus { SUCCESS, FAIL }; |
23 | 24 |
24 // Callback type to send a status. | 25 // Callback type to send a status. |
25 typedef base::Callback<void(CopresenceStatus)> StatusCallback; | 26 typedef base::Callback<void(CopresenceStatus)> StatusCallback; |
26 | 27 |
27 // A delegate interface for users of Copresence. | 28 // A delegate interface for users of Copresence. |
28 class CopresenceClientDelegate { | 29 class CopresenceClientDelegate { |
29 public: | 30 public: |
30 // This method will be called when we have subscribed messages that need to | 31 // This method will be called when we have subscribed messages that need to |
31 // be sent to their respective apps. | 32 // be sent to their respective apps. |
32 virtual void HandleMessages( | 33 virtual void HandleMessages( |
33 const std::string& app_id, | 34 const std::string& app_id, |
34 const std::string& subscription_id, | 35 const std::string& subscription_id, |
35 const std::vector<Message>& message) = 0; | 36 const std::vector<Message>& message) = 0; |
36 | 37 |
37 virtual net::URLRequestContextGetter* GetRequestContext() const = 0; | 38 virtual net::URLRequestContextGetter* GetRequestContext() const = 0; |
38 | 39 virtual const DeviceFingerprint& GetDeviceFingerprint() const = 0; |
rkc
2014/08/13 21:45:31
This proto can be constructed on the Copresence si
Charlie
2014/08/13 22:53:37
The client already depends on our protos, because
rkc
2014/08/13 23:11:36
Report request is is required for every report to
| |
39 virtual const std::string GetPlatformVersionString() const = 0; | 40 virtual const std::string& GetAPIKey() const = 0; |
40 | 41 |
41 virtual WhispernetClient* GetWhispernetClient() = 0; | 42 virtual WhispernetClient* GetWhispernetClient() = 0; |
42 }; | 43 }; |
43 | 44 |
44 } // namespace copresence | 45 } // namespace copresence |
45 | 46 |
46 #endif // COMPONENTS_COPRESENCE_PUBLIC_COPRESENCE_CLIENT_DELEGATE_H_ | 47 #endif // COMPONENTS_COPRESENCE_PUBLIC_COPRESENCE_CLIENT_DELEGATE_H_ |
OLD | NEW |