HomeSort by relevance Sort by last modified time
    Searched refs:WebType (Results 1 - 16 of 16) sorted by null

  /external/chromium_org/third_party/WebKit/Source/modules/push_messaging/
PushError.h 20 typedef WebPushError WebType;
21 static PassRefPtrWillBeRawPtr<DOMException> take(ScriptPromiseResolver*, WebType* webErrorRaw);
22 static void dispose(WebType* webErrorRaw);
PushError.cpp 13 PassRefPtrWillBeRawPtr<DOMException> PushError::take(ScriptPromiseResolver*, WebType* webErrorRaw)
15 OwnPtr<WebType> webError = adoptPtr(webErrorRaw);
26 void PushError::dispose(WebType* webErrorRaw)
PushRegistration.cpp 12 PushRegistration* PushRegistration::take(ScriptPromiseResolver*, WebType* registrationRaw)
14 OwnPtr<WebType> registration = adoptPtr(registrationRaw);
18 void PushRegistration::dispose(WebType* registrationRaw)
PushRegistration.h 21 typedef WebPushRegistration WebType;
22 static PushRegistration* take(ScriptPromiseResolver*, WebType* registrationRaw);
23 static void dispose(WebType* registrationRaw);
  /external/chromium_org/third_party/WebKit/Source/modules/serviceworkers/
ServiceWorkerError.h 46 typedef WebServiceWorkerError WebType;
47 static PassRefPtrWillBeRawPtr<DOMException> take(ScriptPromiseResolver*, WebType* webErrorRaw);
48 static void dispose(WebType* webErrorRaw);
ServiceWorker.h 53 typedef WebServiceWorker WebType;
54 static PassRefPtrWillBeRawPtr<ServiceWorker> take(ScriptPromiseResolver*, WebType* worker);
56 static PassRefPtrWillBeRawPtr<ServiceWorker> from(ExecutionContext*, WebType*);
57 static void dispose(WebType*);
83 static PassRefPtrWillBeRawPtr<ServiceWorker> getOrCreate(ExecutionContext*, WebType*);
ServiceWorkerError.cpp 41 PassRefPtrWillBeRawPtr<DOMException> ServiceWorkerError::take(ScriptPromiseResolver*, WebType* webErrorRaw)
43 OwnPtr<WebType> webError = adoptPtr(webErrorRaw);
70 void ServiceWorkerError::dispose(WebType* webErrorRaw)
ServiceWorkerClients.cpp 23 typedef blink::WebServiceWorkerClientsInfo WebType;
24 static HeapVector<Member<ServiceWorkerClient> > take(ScriptPromiseResolver*, WebType* webClientsRaw)
26 OwnPtr<WebType> webClients = adoptPtr(webClientsRaw);
33 static void dispose(WebType* webClientsRaw)
ServiceWorkerRegistration.h 45 typedef WebServiceWorkerRegistration WebType;
46 static ServiceWorkerRegistration* from(ExecutionContext*, WebType* registration);
47 static ServiceWorkerRegistration* take(ScriptPromiseResolver*, WebType* registration);
48 static void dispose(WebType* registration);
ServiceWorkerRegistration.cpp 25 typedef bool WebType;
26 static bool take(ScriptPromiseResolver* resolver, WebType* boolean)
30 static void dispose(WebType* boolean) { }
79 ServiceWorkerRegistration* ServiceWorkerRegistration::from(ExecutionContext* executionContext, WebType* registration)
86 ServiceWorkerRegistration* ServiceWorkerRegistration::take(ScriptPromiseResolver* resolver, WebType* registration)
91 void ServiceWorkerRegistration::dispose(WebType* registration)
ServiceWorker.cpp 153 PassRefPtrWillBeRawPtr<ServiceWorker> ServiceWorker::from(ExecutionContext* executionContext, WebType* worker)
164 PassRefPtrWillBeRawPtr<ServiceWorker> ServiceWorker::take(ScriptPromiseResolver* resolver, WebType* worker)
176 void ServiceWorker::dispose(WebType* worker)
240 PassRefPtrWillBeRawPtr<ServiceWorker> ServiceWorker::getOrCreate(ExecutionContext* executionContext, WebType* outerWorker)
ServiceWorkerContainer.cpp 145 typedef bool WebType;
146 static bool take(ScriptPromiseResolver* resolver, WebType* boolean)
150 static void dispose(WebType* boolean) { }
  /external/chromium_org/third_party/WebKit/Source/modules/geofencing/
GeofencingError.cpp 13 PassRefPtrWillBeRawPtr<DOMException> GeofencingError::take(ScriptPromiseResolver*, WebType* webErrorRaw)
15 OwnPtr<WebType> webError = adoptPtr(webErrorRaw);
17 case WebType::ErrorTypeAbort:
19 case WebType::ErrorTypeUnknown:
26 void GeofencingError::dispose(WebType* webErrorRaw)
GeofencingError.h 20 typedef blink::WebGeofencingError WebType;
21 static PassRefPtrWillBeRawPtr<DOMException> take(ScriptPromiseResolver*, WebType* webErrorRaw);
22 static void dispose(WebType* webErrorRaw);
Geofencing.cpp 28 typedef blink::WebVector<blink::WebGeofencingRegistration> WebType;
29 static HeapVector<Member<GeofencingRegion> > take(ScriptPromiseResolver* resolver, WebType* regionsRaw)
31 OwnPtr<WebType> webRegions = adoptPtr(regionsRaw);
38 static void dispose(WebType* regionsRaw)
  /external/chromium_org/third_party/WebKit/Source/bindings/core/v8/
CallbackPromiseAdapter.h 48 // typedef blink::WebMyClass WebType;
79 class CallbackPromiseAdapter FINAL : public blink::WebCallbacks<typename S::WebType, typename T::WebType> {
88 virtual void onSuccess(typename S::WebType* result) OVERRIDE
97 virtual void onError(typename T::WebType* error) OVERRIDE
112 class CallbackPromiseAdapter<void, T> FINAL : public blink::WebCallbacks<void, typename T::WebType> {
129 virtual void onError(typename T::WebType* error) OVERRIDE

Completed in 1537 milliseconds