OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GCMClient
(Results
26 - 48
of
48
) sorted by null
1
2
/external/chromium_org/chrome/browser/services/gcm/
push_messaging_service_impl.h
42
const
GCMClient
::IncomingMessage& message) OVERRIDE;
46
const
GCMClient
::SendErrorDetails& send_error_details) OVERRIDE;
63
const
GCMClient
::IncomingMessage& message,
74
GCMClient
::Result result);
push_messaging_service_impl.cc
94
const
GCMClient
::IncomingMessage& message) {
111
GCMClient
::MessageData::const_iterator it = message.data.find("data");
134
const
GCMClient
::IncomingMessage& message,
147
const
GCMClient
::SendErrorDetails& send_error_details) {
252
GCMClient
::Result result) {
254
result ==
GCMClient
::SUCCESS
/external/chromium_org/chrome/browser/extensions/
extension_gcm_app_handler.h
52
const gcm::
GCMClient
::IncomingMessage& message) OVERRIDE;
56
const gcm::
GCMClient
::SendErrorDetails& send_error_details) OVERRIDE;
63
gcm::
GCMClient
::Result result);
extension_gcm_app_handler_unittest.cc
139
unregistration_result_(gcm::
GCMClient
::UNKNOWN_ERROR),
148
const gcm::
GCMClient
::IncomingMessage& message) OVERRIDE {
156
const gcm::
GCMClient
::SendErrorDetails& send_error_details) OVERRIDE {
160
gcm::
GCMClient
::Result result) OVERRIDE {
171
gcm::
GCMClient
::Result unregistration_result() const {
180
gcm::
GCMClient
::Result unregistration_result_;
202
registration_result_(gcm::
GCMClient
::UNKNOWN_ERROR),
203
unregistration_result_(gcm::
GCMClient
::UNKNOWN_ERROR) {
253
// Create GCMProfileService that talks with fake
GCMClient
.
366
gcm::
GCMClient
::Result result)
[
all
...]
extension_gcm_app_handler.cc
68
const gcm::
GCMClient
::IncomingMessage& message) {
78
const gcm::
GCMClient
::SendErrorDetails& send_error_details) {
152
const std::string& app_id, gcm::
GCMClient
::Result result) {
/external/chromium_org/components/gcm_driver/
fake_gcm_driver.h
32
virtual
GCMClient
* GetGCMClientForTesting() const OVERRIDE;
45
virtual
GCMClient
::Result EnsureStarted() OVERRIDE;
52
const
GCMClient
::OutgoingMessage& message) OVERRIDE;
gcm_account_mapper_unittest.cc
36
GCMClient
::AccountTokenInfo MakeAccountTokenInfo(
38
GCMClient
::AccountTokenInfo account_token;
95
GCMClient
::Result result);
96
void CompleteSend(const std::string& message_id,
GCMClient
::Result result);
120
const
GCMClient
::OutgoingMessage& message) OVERRIDE;
172
GCMClient
::Result result) {
177
GCMClient
::Result result) {
189
GCMClient
::SendErrorDetails send_error;
191
send_error.result =
GCMClient
::TTL_EXCEEDED;
198
const
GCMClient
::OutgoingMessage& message)
[
all
...]
gcm_driver_android.h
55
virtual
GCMClient
* GetGCMClientForTesting() const OVERRIDE;
68
virtual
GCMClient
::Result EnsureStarted() OVERRIDE;
75
const
GCMClient
::OutgoingMessage& message) OVERRIDE;
gcm_account_mapper.cc
59
const std::vector<
GCMClient
::AccountTokenInfo> account_tokens) {
79
for (std::vector<
GCMClient
::AccountTokenInfo>::const_iterator token_iter =
141
const
GCMClient
::IncomingMessage& message) {
151
const
GCMClient
::SendErrorDetails& send_error_details) {
160
if (send_error_details.result !=
GCMClient
::TTL_EXCEEDED) {
247
GCMClient
::OutgoingMessage outgoing_message;
270
GCMClient
::Result result) {
272
if (result !=
GCMClient
::SUCCESS)
301
GCMClient
::Result result) {
302
if (result ==
GCMClient
::SUCCESS
[
all
...]
gcm_client.h
37
class
GCMClient
{
151
// A delegate interface that allows the
GCMClient
instance to interact with
167
GCMClient
::Result result) = 0;
201
// Called when the GCM becomes ready. To get to this state,
GCMClient
221
GCMClient
();
222
virtual ~
GCMClient
();
gcm_client_impl.cc
67
GCMClient
::Result ToGCMClientResult(MCSClient::MessageSendStatus status) {
70
return
GCMClient
::SUCCESS;
72
return
GCMClient
::NETWORK_ERROR;
74
return
GCMClient
::NETWORK_ERROR;
76
return
GCMClient
::INVALID_PARAMETER;
78
return
GCMClient
::NETWORK_ERROR;
80
return
GCMClient
::NETWORK_ERROR;
90
const
GCMClient
::ChromeBuildInfo& chrome_build_info,
94
case
GCMClient
::PLATFORM_WIN:
97
case
GCMClient
::PLATFORM_MAC
[
all
...]
gcm_client_impl_unittest.cc
216
public
GCMClient
::Delegate {
243
//
GCMClient
::Delegate overrides (for verification).
246
GCMClient
::Result result) OVERRIDE;
248
GCMClient
::Result result) OVERRIDE;
251
GCMClient
::Result result) OVERRIDE {}
253
const
GCMClient
::IncomingMessage& message)
258
const gcm::
GCMClient
::SendErrorDetails& send_error_details) OVERRIDE;
284
last_result_ =
GCMClient
::UNKNOWN_ERROR;
293
GCMClient
::Result last_result() const { return last_result_; }
294
const
GCMClient
::IncomingMessage& last_message() const
[
all
...]
fake_gcm_client.cc
118
GCMClient
::GCMStatistics FakeGCMClient::GetStatistics() const {
119
return
GCMClient
::GCMStatistics();
197
delegate_->OnUnregisterFinished(app_id,
GCMClient
::SUCCESS);
242
const
GCMClient
::SendErrorDetails& send_error_details) {
gcm_client_impl.h
79
: public
GCMClient
, public GCMStatsRecorder::Delegate,
85
//
GCMClient
implementation.
93
GCMClient
::Delegate* delegate) OVERRIDE;
121
// State representation of the
GCMClient
.
269
GCMClient
::Delegate* delegate_;
fake_gcm_client.h
18
class FakeGCMClient : public
GCMClient
{
37
// Overridden from
GCMClient
:
/external/chromium_org/components/invalidation/
gcm_network_channel.cc
131
gcm::
GCMClient
::Result result) {
133
if (result == gcm::
GCMClient
::SUCCESS) {
144
case gcm::
GCMClient
::NETWORK_ERROR:
145
case gcm::
GCMClient
::SERVER_ERROR:
146
case gcm::
GCMClient
::TTL_EXCEEDED:
147
case gcm::
GCMClient
::UNKNOWN_ERROR: {
415
registration_result_(gcm::
GCMClient
::UNKNOWN_ERROR),
441
const gcm::
GCMClient
::Result result) const {
444
ENUM_CASE(gcm::
GCMClient
::SUCCESS);
445
ENUM_CASE(gcm::
GCMClient
::NETWORK_ERROR)
[
all
...]
gcm_invalidation_bridge.h
57
const gcm::
GCMClient
::IncomingMessage& message) OVERRIDE;
61
const gcm::
GCMClient
::SendErrorDetails& send_error_details) OVERRIDE;
88
gcm::
GCMClient
::Result result);
gcm_network_channel_delegate.h
30
gcm::
GCMClient
::Result result)> RegisterCallback;
gcm_network_channel.h
34
// TODO(pavely): Move this toString to a more appropiate place in
GCMClient
.
36
const gcm::
GCMClient
::Result result) const;
43
gcm::
GCMClient
::Result registration_result_;
90
gcm::
GCMClient
::Result result);
gcm_network_channel_unittest.cc
258
delegate()->register_callback.Run("registration.id", gcm::
GCMClient
::SUCCESS);
285
delegate()->register_callback.Run("", gcm::
GCMClient
::NETWORK_ERROR);
290
delegate()->register_callback.Run("", gcm::
GCMClient
::NOT_SIGNED_IN);
316
delegate()->register_callback.Run("registration.id", gcm::
GCMClient
::SUCCESS);
331
delegate()->register_callback.Run("registration.id", gcm::
GCMClient
::SUCCESS);
356
delegate()->register_callback.Run("registration.id", gcm::
GCMClient
::SUCCESS);
382
delegate()->register_callback.Run("registration.id", gcm::
GCMClient
::SUCCESS);
424
delegate()->register_callback.Run("registration.id", gcm::
GCMClient
::SUCCESS);
479
delegate()->register_callback.Run("registration.id", gcm::
GCMClient
::SUCCESS);
gcm_invalidation_bridge.cc
56
gcm::
GCMClient
::Result result);
140
gcm::
GCMClient
::Result result) {
256
// No-op if
GCMClient
is disabled.
272
gcm::
GCMClient
::Result result) {
284
// No-op if
GCMClient
is disabled.
306
const gcm::
GCMClient
::IncomingMessage& message) {
307
gcm::
GCMClient
::MessageData::const_iterator it;
333
const gcm::
GCMClient
::SendErrorDetails& send_error_details) {
/external/chromium_org/chrome/browser/invalidation/
gcm_invalidation_bridge_unittest.cc
40
gcm::
GCMClient
::SUCCESS));
84
gcm::
GCMClient
::Result result) {
/external/chromium_org/chrome/browser/ui/webui/
gcm_internals_ui.cc
123
const gcm::
GCMClient
::GCMStatistics* stats) const;
133
const gcm::
GCMClient
::GCMStatistics& args) const;
149
const gcm::
GCMClient
::GCMStatistics* stats) const {
270
const gcm::
GCMClient
::GCMStatistics& stats) const {
Completed in 1147 milliseconds
1
2