You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Need to implement CefRequestHandler::OnQuotaRequest:
///
// Called on the IO thread when JavaScript requests a specific storage quota
// size via the webkitStorageInfo.requestQuota function. |origin_url| is the
// origin of the page making the request. |new_size| is the requested quota
// size in bytes. Return true and call CefQuotaCallback::Continue() either in
// this method or at a later time to grant or deny the request. Return false
// to cancel the request.
///
/*--cef(optional_param=realm)--*/
virtual bool OnQuotaRequest(CefRefPtr<CefBrowser> browser,
const CefString& origin_url,
int64 new_size,
CefRefPtr<CefQuotaCallback> callback) {
return false;
}
Original issue reported on code.google.com by czarek.t...@gmail.com on 2 May 2014 at 6:26
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
czarek.t...@gmail.com
on 2 May 2014 at 6:26The text was updated successfully, but these errors were encountered: