Home | History | Annotate | Download | only in UIProcess

Lines Matching defs:callbackID

76     uint64_t callbackID = callback->callbackID();
77 m_arrayCallbacks.set(callbackID, callback.release());
80 m_webContext->sendToAllProcessesRelaunchingThemIfNecessary(Messages::WebCookieManager::GetHostnamesWithCookies(callbackID));
83 void WebCookieManagerProxy::didGetHostnamesWithCookies(const Vector<String>& hostnameList, uint64_t callbackID)
85 RefPtr<ArrayCallback> callback = m_arrayCallbacks.take(callbackID);
145 uint64_t callbackID = callback->callbackID();
146 m_httpCookieAcceptPolicyCallbacks.set(callbackID, callback.release());
149 m_webContext->sendToAllProcessesRelaunchingThemIfNecessary(Messages::WebCookieManager::GetHTTPCookieAcceptPolicy(callbackID));
152 void WebCookieManagerProxy::didGetHTTPCookieAcceptPolicy(uint32_t policy, uint64_t callbackID)
154 RefPtr<HTTPCookieAcceptPolicyCallback> callback = m_httpCookieAcceptPolicyCallbacks.take(callbackID);