HomeSort by relevance Sort by last modified time
    Searched defs:registration (Results 1 - 25 of 47) sorted by null

1 2

  /external/chromium_org/content/browser/service_worker/
service_worker_handle.h 34 // registration must be also alive.
48 ServiceWorkerRegistration* registration,
70 ServiceWorkerRegistration* registration() { return registration_.get(); } function in class:content::ServiceWorkerHandle
service_worker_registration_unittest.cc 50 scoped_refptr<ServiceWorkerRegistration> registration = local
60 new ServiceWorkerVersion(registration, version_1_id, context_ptr_);
62 registration->set_active_version(version_1);
65 new ServiceWorkerVersion(registration, version_2_id, context_ptr_);
66 registration->set_waiting_version(version_2);
68 registration->ActivateWaitingVersion();
69 DCHECK_EQ(version_2, registration->active_version());
service_worker_register_job.cc 85 return REGISTRATION;
93 ServiceWorkerRegistration* registration) {
95 DCHECK(!internal_.registration);
96 internal_.registration = registration;
99 ServiceWorkerRegistration* ServiceWorkerRegisterJob::registration() { function in class:content::ServiceWorkerRegisterJob
101 return internal_.registration;
155 // On unexpected error, abort this registration job.
163 // registration and abort.
180 // "If serviceWorkerRegistration is null..." create a new registration
    [all...]
service_worker_register_job.h 21 // Handles the registration of a Service Worker.
23 // The registration flow includes most or all of the following,
27 // - creating a ServiceWorkerVersion for the new registration instance.
37 ServiceWorkerRegistration* registration,
83 scoped_refptr<ServiceWorkerRegistration> registration; member in struct:content::ServiceWorkerRegisterJob::Internal
89 void set_registration(ServiceWorkerRegistration* registration);
90 ServiceWorkerRegistration* registration();
98 const scoped_refptr<ServiceWorkerRegistration>& registration);
111 ServiceWorkerRegistration* registration,
service_worker_internals_ui.cc 125 void WorkerStarted(const scoped_refptr<ServiceWorkerRegistration>& registration,
134 const scoped_refptr<ServiceWorkerRegistration>& registration) {
137 // Pass the reference of |registration| to WorkerStarted callback to prevent
139 // |registration| is 1, it will be deleted after WorkerStarted is called.
140 registration->active_version()->StartWorker(
141 base::Bind(WorkerStarted, registration, callback));
212 const ServiceWorkerRegistrationInfo& registration = *it; local
214 registration_info->SetString("scope", registration.pattern.spec());
215 registration_info->SetString("script_url", registration.script_url.spec());
217 "registration_id", base::Int64ToString(registration.registration_id))
    [all...]
service_worker_job_unittest.cc 19 // Unit tests for testing all job registration tasks.
29 ServiceWorkerRegistration* registration,
31 ASSERT_TRUE(!version || version->registration_id() == registration->id())
32 << version << " " << registration; local
35 *registration_out = registration;
41 scoped_refptr<ServiceWorkerRegistration>* registration,
46 *registration = result;
50 // as well as the resulting registration. Whent the callback is fired,
57 scoped_refptr<ServiceWorkerRegistration>* registration) {
60 &SaveRegistrationCallback, expected_status, called, registration);
217 scoped_refptr<ServiceWorkerRegistration> registration; local
228 ASSERT_NE(scoped_refptr<ServiceWorkerRegistration>(NULL), registration); local
236 scoped_refptr<ServiceWorkerRegistration> registration; local
265 ASSERT_EQ(scoped_refptr<ServiceWorkerRegistration>(NULL), registration); local
414 scoped_refptr<ServiceWorkerRegistration> registration; local
426 ASSERT_EQ(scoped_refptr<ServiceWorkerRegistration>(NULL), registration); local
436 scoped_refptr<ServiceWorkerRegistration> registration; local
462 ASSERT_EQ(scoped_refptr<ServiceWorkerRegistration>(), registration); local
497 scoped_refptr<ServiceWorkerRegistration> registration; local
542 scoped_refptr<ServiceWorkerRegistration> registration; local
576 scoped_refptr<ServiceWorkerRegistration> registration; local
584 ASSERT_EQ(scoped_refptr<ServiceWorkerRegistration>(), registration); local
669 scoped_refptr<ServiceWorkerRegistration> registration; local
699 EXPECT_EQ(scoped_refptr<ServiceWorkerRegistration>(), registration); local
    [all...]
service_worker_storage.cc 35 const scoped_refptr<ServiceWorkerRegistration>& registration,
38 callback.Run(status, registration);
43 const scoped_refptr<ServiceWorkerRegistration>& registration,
46 RunSoon(from_here, base::Bind(callback, status, registration));
217 scoped_refptr<ServiceWorkerRegistration> registration = local
219 if (registration) {
220 CompleteFindNow(registration, SERVICE_WORKER_OK, callback);
261 ServiceWorkerRegistration* registration,
264 DCHECK(registration);
274 data.registration_id = registration->id()
579 ServiceWorkerRegistration* registration = local
666 scoped_refptr<ServiceWorkerRegistration> registration = local
    [all...]
service_worker_storage_unittest.cc 51 const scoped_refptr<ServiceWorkerRegistration>& registration) {
54 *found = registration;
186 scoped_refptr<ServiceWorkerRegistration> registration,
191 registration, version, MakeStatusCallback(&was_called, &result));
222 scoped_refptr<ServiceWorkerRegistration> registration) {
226 registration, MakeStatusCallback(&was_called, &result));
235 scoped_refptr<ServiceWorkerRegistration>* registration) {
239 document_url, MakeFindCallback(&was_called, &result, registration));
247 scoped_refptr<ServiceWorkerRegistration>* registration) {
251 scope, MakeFindCallback(&was_called, &result, registration));
510 scoped_refptr<ServiceWorkerRegistration> registration = local
    [all...]
service_worker_database.cc 411 RegistrationData registration; local
412 status = ParseRegistrationData(itr->value().ToString(), &registration);
418 registrations->push_back(registration);
448 RegistrationData registration; local
449 status = ParseRegistrationData(itr->value().ToString(), &registration);
455 registrations->push_back(registration);
465 RegistrationData* registration,
468 DCHECK(registration);
484 *registration = value;
489 const RegistrationData& registration,
    [all...]
  /external/chromium_org/third_party/WebKit/Source/modules/push_messaging/
PushRegistration.h 24 OwnPtr<WebType> registration = adoptPtr(registrationRaw); local
25 return new PushRegistration(registration->endpoint, registration->registrationId);
  /external/chromium_org/win8/metro_driver/
metro_driver.cc 97 HANDLE registration = local
116 ::RemoveVectoredExceptionHandler(registration);
  /external/chromium_org/win8/test/
metro_registration_helper.cc 52 // Perform the registration by invoking test_registrar.exe.
67 LOG(ERROR) << "Win8 registration using "
72 LOG(ERROR) << "Win8 registration using "
77 PLOG(ERROR) << "Failed to launch Win8 registration utility using "
85 base::win::ScopedComPtr<IApplicationAssociationRegistration> registration; local
86 HRESULT hr = registration.CreateInstance(
94 hr = registration->QueryCurrentDefault(protocol, AT_URLPROTOCOL,
114 // Make sure the registration changes have been acknowledged by the shell
  /external/smack/src/org/jivesoftware/smack/util/
PacketParserUtils.java 41 import org.jivesoftware.smack.packet.Registration;
456 private static Registration parseRegistration(XmlPullParser parser) throws Exception {
457 Registration registration = new Registration(); local
480 registration.setInstructions(value);
485 registration.addExtension(
498 registration.setAttributes(fields);
499 return registration;
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.osgi.util_3.2.100.v20100503.jar 
org.eclipse.equinox.simpleconfigurator_1.0.200.v20100503.jar 
org.eclipse.core.runtime_3.6.0.v20100505.jar 
  /external/chromium_org/chrome/installer/util/
shell_util.cc 59 // An enum used to tell QuickIsChromeRegistered() which level of registration
69 // Note: Shell registration implies ProgId registration.
194 // Returns the Windows browser client registration key for Chrome. For
199 // user-specific registration suffix; see GetUserSpecificDefaultBrowserSuffix
255 // registered to handle some verbs. This registration has the side-effect
1060 base::win::ScopedComPtr<IApplicationAssociationRegistration> registration; local
1087 base::win::ScopedComPtr<IApplicationAssociationRegistration> registration; local
    [all...]
  /external/chromium_org/v8/src/
spaces.cc 803 MemoryAllocationCallbackRegistration registration = local
805 if ((registration.space & space) == space &&
806 (registration.action & action) == action)
807 registration.callback(space, action, static_cast<int>(size));
826 MemoryAllocationCallbackRegistration registration(callback, space, action);
828 return memory_allocation_callbacks_.Add(registration);
    [all...]
  /hardware/ril/reference-ril/
reference-ril.c 1321 int *registration; local
    [all...]
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.equinox.simpleconfigurator_1.0.400.v20130327-2119.jar 
org.eclipse.core.runtime_3.9.100.v20131218-1515.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.simpleconfigurator_1.0.400.v20130327-2119.jar 
org.eclipse.core.runtime_3.9.0.v20130326-1255.jar 
  /external/chromium_org/third_party/WebKit/Source/core/dom/
Node.cpp 2089 const MutationObserverRegistration& registration = **iter; local
2112 MutationObserverRegistration* registration = 0; local
    [all...]
  /prebuilts/tools/common/eclipse/
org.eclipse.core.runtime_3.6.0.v20100505.jar 

Completed in 303 milliseconds

1 2