Closed Bug 1180964 Opened 9 years ago Closed 9 years ago

Provide a C++ friendly version of LoadInfo on nsIChannel

Categories

(Core :: DOM: Security, defect)

defect
Not set
normal

Tracking

()

RESOLVED FIXED
mozilla42
Tracking Status
firefox42 --- fixed

People

(Reporter: ckerschb, Assigned: ckerschb)

References

Details

Attachments

(1 file, 1 obsolete file)

      No description provided.
Assignee: nobody → mozilla
Blocks: 1143922
Jonas, what do you think? If you are fine with that change I would ask a necko peer to review. I think it would make C++ a whole lot nicer instead of having to use the outgoing argument for loadInfo on the channel all the time.
Attachment #8630540 - Flags: review?(jonas)
Comment on attachment 8630540 [details] [diff] [review]
bug_1180964_loadinfo_getter.patch

Review of attachment 8630540 [details] [diff] [review]:
-----------------------------------------------------------------

::: netwerk/base/nsIChannel.idl
@@ +318,5 @@
> +  inline already_AddRefed<nsILoadInfo> GetLoadInfo()
> +  {
> +    nsCOMPtr<nsILoadInfo> result;
> +    nsresult rv = GetLoadInfo(getter_AddRefs(result));
> +    NS_ENSURE_SUCCESS(rv, nullptr);

Just do MOZ_ASSERT(NS_SUCCEEDED(rv) || !result). Per XPCOM rules that should always pass. That way the release code is simpler.
Attachment #8630540 - Flags: review?(jonas) → review+
Thanks Jonas. Steve, are you fine with that?
Attachment #8630540 - Attachment is obsolete: true
Attachment #8630611 - Flags: review?(sworkman)
Comment on attachment 8630611 [details] [diff] [review]
bug_1180964_loadinfo_getter.patch

Review of attachment 8630611 [details] [diff] [review]:
-----------------------------------------------------------------

LGTM - Thanks Chris!
Attachment #8630611 - Flags: review?(sworkman) → review+
https://hg.mozilla.org/mozilla-central/rev/57055f96a040
Status: NEW → RESOLVED
Closed: 9 years ago
Resolution: --- → FIXED
Target Milestone: --- → mozilla42
You need to log in before you can comment on or make changes to this bug.

Attachment

General

Created:
Updated:
Size: