// static already_AddRefed<SharedWorker> SharedWorker::Constructor(const GlobalObject& aGlobal, JSContext* aCx, const nsAString& aScriptURL, const mozilla::dom::Optional<nsAString>& aName, ErrorResult& aRv) { AssertIsOnMainThread(); RuntimeService* rts = RuntimeService::GetOrCreateService(); if (!rts) { aRv = NS_ERROR_NOT_AVAILABLE; return nullptr; } nsString name; if (aName.WasPassed()) { name = aName.Value(); } nsRefPtr<SharedWorker> sharedWorker; nsresult rv = rts->CreateSharedWorker(aGlobal, aScriptURL, name, getter_AddRefs(sharedWorker)); if (NS_FAILED(rv)) { aRv = rv; return nullptr; } return sharedWorker.forget(); }
void nsImageLoadingContent::ForceReload(const mozilla::dom::Optional<bool>& aNotify, mozilla::ErrorResult& aError) { nsCOMPtr<nsIURI> currentURI; GetCurrentURI(getter_AddRefs(currentURI)); if (!currentURI) { aError.Throw(NS_ERROR_NOT_AVAILABLE); return; } // defaults to true bool notify = !aNotify.WasPassed() || aNotify.Value(); // We keep this flag around along with the old URI even for failed requests // without a live request object ImageLoadType loadType = \ (mCurrentRequestFlags & REQUEST_IS_IMAGESET) ? eImageLoadType_Imageset : eImageLoadType_Normal; nsresult rv = LoadImage(currentURI, true, notify, loadType, true, nullptr, nsIRequest::VALIDATE_ALWAYS); if (NS_FAILED(rv)) { aError.Throw(rv); } }
void nsPerformance::GetEntriesByName(const nsAString& name, const mozilla::dom::Optional<nsAString>& entryType, nsTArray<nsRefPtr<PerformanceEntry> >& retval) { MOZ_ASSERT(NS_IsMainThread()); retval.Clear(); uint32_t count = mEntries.Length(); for (uint32_t i = 0 ; i < count && i < mPrimaryBufferSize ; i++) { if (mEntries[i]->GetName().Equals(name) && (!entryType.WasPassed() || mEntries[i]->GetEntryType().Equals(entryType.Value()))) { retval.AppendElement(mEntries[i]); } } }