HomeSort by relevance Sort by last modified time
    Searched full:registration_id (Results 1 - 24 of 24) sorted by null

  /external/chromium_org/content/child/service_worker/
web_service_worker_impl.h 17 explicit WebServiceWorkerImpl(int64 registration_id)
18 : registration_id_(registration_id) {}
service_worker_dispatcher.cc 99 int64 registration_id) {
106 // the browser has to generate the registration_id so the same
113 new WebServiceWorkerImpl(registration_id));
service_worker_dispatcher.h 61 void OnRegistered(int32 thread_id, int32 request_id, int64 registration_id);
  /external/chromium_org/content/browser/service_worker/
service_worker_registration.cc 13 int64 registration_id)
16 registration_id_(registration_id),
service_worker_registration_unittest.cc 29 const int64 registration_id = -1L; local
35 registration_id);
51 int64 registration_id = -1L; local
56 registration_id);
service_worker_context_unittest.cc 70 int64 registration_id = -1L; local
75 MakeRegisteredCallback(&called, &registration_id));
81 ASSERT_NE(-1L, registration_id);
89 int64 registration_id = -1L; local
93 MakeRegisteredCallback(&called, &registration_id));
service_worker_dispatcher_host.h 54 int64 registration_id);
service_worker_dispatcher_host.cc 169 int64 registration_id) {
176 thread_id, request_id, registration_id));
service_worker_registration.h 39 int64 registration_id);
service_worker_context_core.h 47 int64 registration_id)> RegistrationCallback;
  /external/chromium_org/chrome/browser/services/gcm/
gcm_client_mock.cc 59 std::string registration_id = GetRegistrationIdFromSenderIds(sender_ids); local
67 registration_id));
131 // Simulate the registration_id by concaternating all sender IDs.
132 // Set registration_id to empty to denote an error if sender_ids contains a
134 std::string registration_id; local
139 registration_id += ",";
140 registration_id += sender_ids[i];
143 return registration_id;
gcm_profile_service.h 44 typedef base::Callback<void(const std::string& registration_id,
111 std::string registration_id; member in struct:gcm::GCMProfileService::RegistrationInfo
136 std::string registration_id,
gcm_profile_service.cc 46 const std::string& registration_id,
112 const std::string& registration_id,
122 registration_id,
346 callback.Run(registration_info_iter->second.registration_id,
543 std::string registration_id,
562 registration_info_iter->second.registration_id = registration_id;
570 callback.Run(registration_id, result);
652 registration_info.registration_id);
698 if (!dict->GetString(kRegistrationIDKey, &registration_info->registration_id))
    [all...]
gcm_profile_service_unittest.cc 336 void RegisterCompleted(const std::string& registration_id,
338 registration_id_ = registration_id;
  /external/chromium_org/chrome/browser/extensions/api/gcm/
gcm_api.h 53 void CompleteFunctionWithResult(const std::string& registration_id,
gcm_api.cc 120 const std::string& registration_id,
122 SetResult(base::Value::CreateStringValue(registration_id));
  /external/chromium_org/google_apis/gcm/
gcm_client.h 91 // |registration_id|: non-empty if the registration completed successfully.
94 const std::string& registration_id,
  /frameworks/base/docs/html/google/gcm/
gcm.jd 415 <td><code>registration_id</code></td>
456 <pre class="prettyprint">registration_id=42</pre>
477 <pre class="prettyprint">collapse_key=score_update&amp;time_to_live=108&amp;delay_while_idle=1&amp;data.score=4x8&amp;data.time=15:16.2342&amp;registration_id=42
553 <li><code>registration_id</code>: If set, means that GCM processed the message but it has another canonical registration ID for that device, so sender should replace the IDs on future requests (otherwise they might be rejected). This field is never set if there is an error in the request.
561 <li>If <code>message_id</code> is set, check for <code>registration_id</code>:
563 <li>If <code>registration_id</code> is set, replace the original ID with the new value (canonical ID) in your server database. Note that the original ID is not part of the result, so you need to obtain it from the list of <code>registration_ids</code> passed in the request (using the same index).</li>
577 has the format of <code>registration_id=<em>canonical ID</em></code>. The second line is optional, and it can only be sent if the first line is not an error. We recommend handling the plain-text response in a similar way as handling the JSON response:</p>
581 <li>If second line starts with <code>registration_id</code>, gets its value and replace the registration IDs in your server database.</li>
    [all...]
adv.jd 77 <p>Whenever the application receives a <code>com.google.android.c2dm.intent.REGISTRATION</code> intent with a <code>registration_id</code> extra, it should save the ID for future use, pass it to the 3rd-party server to complete the registration, and keep track of whether the server completed the registration. If the server fails to complete the registration, it should try again or unregister from GCM.</p>
90 <p>If later on you try to send a message using a different registration ID, GCM will process the request as usual, but it will include the canonical registration ID in the <code>registration_id</code> field of the response. Make sure to replace the registration ID stored in your server with this canonical ID, as eventually the ID you're using will stop working.</p>
212 "registration_id" : "APA91bHun4MxP5egoKMwt2KZFBaFUH-1RYqx...",
gs.jd 185 public static final String PROPERTY_REG_ID = "registration_id";
462 REGISTRATION_ID = ''
513 send_queue.append({'to': REGISTRATION_ID,
c2dm.jd 110 "registration_id" : "APA91bHun4MxP5egoKMwt2KZFBaFUH-1RYqx...",
ccs.jd 150 &quot;to&quot;:&quot;REGISTRATION_ID&quot;, // &quot;to&quot; replaces &quot;registration_ids&quot;
  /frameworks/base/docs/html/reference/com/google/android/gcm/server/
Constants.html 789 <td class="jd-descrcol" width="100%">Bad registration_id.</td>
810 <td class="jd-descrcol" width="100%">The sender_id contained in the registration_id does not match the
825 <td class="jd-descrcol" width="100%">Missing registration_id.</td>
    [all...]
  /frameworks/base/docs/html/reference/com/google/android/gcm/
GCMConstants.html     [all...]

Completed in 1378 milliseconds