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

1 2 3

  /external/chromium_org/third_party/WebKit/Source/modules/push_messaging/
PushRegistration.cpp 14 OwnPtr<WebType> registration = adoptPtr(registrationRaw); local
15 return new PushRegistration(registration->endpoint, registration->registrationId);
  /external/chromium_org/content/browser/service_worker/
service_worker_context_request_handler.cc 56 ServiceWorkerRegistration* registration = local
58 DCHECK(registration); // We're registering or updating so must be there.
68 base::Time::Now() - registration->last_update_check();
service_worker_handle.h 34 // registration must be also alive.
50 ServiceWorkerRegistration* registration,
75 ServiceWorkerRegistration* registration() { return registration_.get(); } function in class:content::ServiceWorkerHandle
service_worker_registration_handle.h 33 ServiceWorkerRegistration* registration);
47 ServiceWorkerRegistration* registration() { return registration_.get(); } function in class:content::ServiceWorkerRegistrationHandle
52 ServiceWorkerRegistration* registration,
56 ServiceWorkerRegistration* registration) OVERRIDE;
58 ServiceWorkerRegistration* registration) OVERRIDE;
service_worker_registration_unittest.cc 51 ServiceWorkerRegistration* registration,
54 observed_registration_ = registration;
60 ServiceWorkerRegistration* registration) OVERRIDE {
65 ServiceWorkerRegistration* registration) OVERRIDE {
70 ServiceWorkerRegistration* registration) OVERRIDE {
96 scoped_refptr<ServiceWorkerRegistration> registration = local
105 registration.get(), kScript, version_1_id, context_ptr_);
107 registration.get(), kScript, version_2_id, context_ptr_);
110 registration->AddListener(&listener);
111 registration->SetActiveVersion(version_1.get())
164 scoped_refptr<ServiceWorkerRegistration> registration = local
    [all...]
service_worker_register_job.h 22 // Handles the initial registration of a Service Worker and the
41 ServiceWorkerRegistration* registration,
45 // For registration jobs.
54 ServiceWorkerRegistration* registration);
93 scoped_refptr<ServiceWorkerRegistration> registration; member in struct:content::ServiceWorkerRegisterJob::Internal
103 const scoped_refptr<ServiceWorkerRegistration>& registration);
104 ServiceWorkerRegistration* registration();
108 const scoped_refptr<ServiceWorkerRegistration>& registration);
115 const scoped_refptr<ServiceWorkerRegistration>& registration);
118 const scoped_refptr<ServiceWorkerRegistration>& registration);
    [all...]
service_worker_dispatcher_host.cc 184 ServiceWorkerRegistration* registration) {
186 FindRegistrationHandle(provider_id, registration->id());
194 GetContext()->AsWeakPtr(), this, provider_id, registration));
450 if (handle->provider_id() == provider_id && handle->registration() &&
451 handle->registration()->id() == registration_id) {
460 ServiceWorkerRegistration* registration,
464 GetOrCreateRegistrationHandle(provider_id, registration);
468 registration->installing_version());
470 registration->waiting_version());
472 registration->active_version())
490 ServiceWorkerRegistration* registration = local
    [all...]
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));
213 const ServiceWorkerRegistrationInfo& registration = *it; local
215 registration_info->SetString("scope", registration.pattern.spec());
217 "registration_id", base::Int64ToString(registration.registration_id));
219 if (!registration.active_version.is_null)
    [all...]
service_worker_register_job.cc 44 ServiceWorkerRegistration* registration)
47 pattern_(registration->pattern()),
48 script_url_(registration->GetNewestVersion()->script_url()),
53 internal_.registration = registration;
89 scoped_refptr<ServiceWorkerRegistration> registration = local
91 if (registration.get())
92 RunSoon(base::Bind(next_step, SERVICE_WORKER_OK, registration));
122 const scoped_refptr<ServiceWorkerRegistration>& registration) {
124 DCHECK(!internal_.registration.get())
128 ServiceWorkerRegistration* ServiceWorkerRegisterJob::registration() { function in class:content::ServiceWorkerRegisterJob
    [all...]
service_worker_job_unittest.cc 29 // Unit tests for testing all job registration tasks.
41 ServiceWorkerRegistration* registration,
43 ASSERT_TRUE(!version || version->registration_id() == registration->id())
44 << version << " " << registration; local
47 *registration_out = registration;
53 scoped_refptr<ServiceWorkerRegistration>* registration,
58 *registration = result;
62 // as well as the resulting registration. Whent the callback is fired,
69 scoped_refptr<ServiceWorkerRegistration>* registration) {
72 &SaveRegistrationCallback, expected_status, called, registration);
228 scoped_refptr<ServiceWorkerRegistration> registration; local
239 ASSERT_NE(scoped_refptr<ServiceWorkerRegistration>(NULL), registration); local
247 scoped_refptr<ServiceWorkerRegistration> registration; local
276 ASSERT_EQ(scoped_refptr<ServiceWorkerRegistration>(NULL), registration); local
424 scoped_refptr<ServiceWorkerRegistration> registration; local
436 ASSERT_EQ(scoped_refptr<ServiceWorkerRegistration>(NULL), registration); local
446 scoped_refptr<ServiceWorkerRegistration> registration; local
472 ASSERT_EQ(scoped_refptr<ServiceWorkerRegistration>(), registration); local
507 scoped_refptr<ServiceWorkerRegistration> registration; local
552 scoped_refptr<ServiceWorkerRegistration> registration; local
589 scoped_refptr<ServiceWorkerRegistration> registration; local
597 ASSERT_EQ(scoped_refptr<ServiceWorkerRegistration>(), registration); local
682 scoped_refptr<ServiceWorkerRegistration> registration; local
712 EXPECT_EQ(scoped_refptr<ServiceWorkerRegistration>(), registration); local
718 scoped_refptr<ServiceWorkerRegistration> registration; local
760 scoped_refptr<ServiceWorkerRegistration> registration; local
791 scoped_refptr<ServiceWorkerRegistration> registration; local
915 scoped_refptr<ServiceWorkerRegistration> registration; local
1014 scoped_refptr<ServiceWorkerRegistration> registration = local
1053 scoped_refptr<ServiceWorkerRegistration> registration = local
1133 scoped_refptr<ServiceWorkerRegistration> registration; local
1166 scoped_refptr<ServiceWorkerRegistration> registration; local
    [all...]
service_worker_database.cc 404 RegistrationData registration; local
405 status = ParseRegistrationData(itr->value().ToString(), &registration);
411 registrations->push_back(registration);
441 RegistrationData registration; local
442 status = ParseRegistrationData(itr->value().ToString(), &registration);
448 registrations->push_back(registration);
458 RegistrationData* registration,
461 DCHECK(registration);
477 *registration = value;
482 const RegistrationData& registration,
    [all...]
service_worker_storage.cc 41 const scoped_refptr<ServiceWorkerRegistration>& registration,
44 callback.Run(status, registration);
49 const scoped_refptr<ServiceWorkerRegistration>& registration,
52 RunSoon(from_here, base::Bind(callback, status, registration));
378 scoped_refptr<ServiceWorkerRegistration> registration = local
380 if (registration.get()) {
381 CompleteFindNow(registration, SERVICE_WORKER_OK, callback);
422 ServiceWorkerRegistration* registration,
425 DCHECK(registration);
435 data.registration_id = registration->id()
532 ServiceWorkerRegistration* registration = local
861 scoped_refptr<ServiceWorkerRegistration> registration = local
892 ServiceWorkerRegistration* registration = local
987 scoped_refptr<ServiceWorkerRegistration> registration = local
    [all...]
  /external/chromium_org/content/child/service_worker/
web_service_worker_provider_impl.cc 52 if (!context_->registration()) {
53 // This provider is not associated with any registration.
57 // Set .ready if the associated registration has the active service worker.
59 WebServiceWorkerRegistrationImpl* registration = local
61 context_->registration()->info(), false);
62 if (!registration) {
63 registration = GetDispatcher()->CreateServiceWorkerRegistration(
64 context_->registration()->info(), false);
66 registration->SetInstalling(
68 registration->SetWaiting
    [all...]
service_worker_provider_context.cc 61 ServiceWorkerProviderContext::registration() { function in class:content::ServiceWorkerProviderContext
service_worker_dispatcher.cc 257 RegistrationObjectMap::iterator registration = local
259 if (registration == registrations_.end())
267 return registration->second;
380 WebServiceWorkerRegistrationImpl* registration = NULL;
382 registration = FindOrCreateRegistration(info, attrs);
384 callbacks->onSuccess(registration);
620 provider->second->registration()->info();
621 WebServiceWorkerRegistrationImpl* registration = local
623 if (!registration) {
624 registration = CreateServiceWorkerRegistration(info, false)
719 WebServiceWorkerRegistrationImpl* registration = local
    [all...]
  /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/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
ServiceWorkerRegistration.cpp 79 ServiceWorkerRegistration* ServiceWorkerRegistration::from(ExecutionContext* executionContext, WebType* registration)
81 if (!registration)
83 return getOrCreate(executionContext, registration);
86 ServiceWorkerRegistration* ServiceWorkerRegistration::take(ScriptPromiseResolver* resolver, WebType* registration)
88 return from(resolver->scriptState()->executionContext(), registration);
91 void ServiceWorkerRegistration::dispose(WebType* registration)
93 delete registration;
137 ServiceWorkerRegistration* registration = adoptRefCountedGarbageCollectedWillBeNoop(new ServiceWorkerRegistration(executionContext, adoptPtr(outerRegistration))); local
138 registration->suspendIfNeeded();
139 return registration;
    [all...]
  /external/chromium_org/components/copresence/rpc/
rpc_handler_unittest.cc 183 RegisterDeviceRequest* registration = local
185 Identity identity = registration->device_identifiers().registrant();
  /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...]
  /frameworks/av/media/libmedia/
IAudioPolicyService.cpp 682 virtual status_t registerPolicyMixes(Vector<AudioMix> mixes, bool registration)
686 data.writeInt32(registration ? 1 : 0);
1203 bool registration = data.readInt32() == 1; local
    [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 
  /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
1061 base::win::ScopedComPtr<IApplicationAssociationRegistration> registration; local
1088 base::win::ScopedComPtr<IApplicationAssociationRegistration> registration; local
    [all...]
  /external/chromium_org/v8/src/heap/
spaces.cc 754 MemoryAllocationCallbackRegistration registration = local
756 if ((registration.space & space) == space &&
757 (registration.action & action) == action)
758 registration.callback(space, action, static_cast<int>(size));
776 MemoryAllocationCallbackRegistration registration(callback, space, action);
778 return memory_allocation_callbacks_.Add(registration);
    [all...]

Completed in 432 milliseconds

1 2 3