Closed
Bug 220198
Opened 21 years ago
Closed 21 years ago
helperappservice qi's to httpchannel when it wants encodedchannel
Categories
(Core Graveyard :: File Handling, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
mozilla1.6alpha
People
(Reporter: Biesinger, Assigned: Biesinger)
Details
Attachments
(1 file)
2.38 KB,
patch
|
bzbarsky
:
review+
darin.moz
:
superreview+
|
Details | Diff | Splinter Review |
nsExternalHelperAppService.cpp:
nsCOMPtr<nsIHttpChannel> httpChannel = do_QueryInterface( aChannel );
if (httpChannel)
{
// Turn off content encoding conversions if needed
[... some stuff not involving httpChannel...]
nsCOMPtr<nsIEncodedChannel> encodedChannel(do_QueryInterface(httpChannel));
NS_ENSURE_TRUE(encodedChannel, NS_ERROR_UNEXPECTED);
encodedChannel->SetApplyConversion( applyConversion );
}
this should really directly qi to nsIEncodedChannel, instead of via httpChannel
Assignee | ||
Comment 1•21 years ago
|
||
Assignee | ||
Updated•21 years ago
|
Attachment #132085 -
Flags: superreview?(darin)
Attachment #132085 -
Flags: review?(bzbarsky)
Assignee | ||
Updated•21 years ago
|
Status: NEW → ASSIGNED
Target Milestone: --- → mozilla1.6alpha
Updated•21 years ago
|
Attachment #132085 -
Flags: superreview?(darin) → superreview+
![]() |
||
Comment 2•21 years ago
|
||
Comment on attachment 132085 [details] [diff] [review]
patch
r=bzbarsky
Attachment #132085 -
Flags: review?(bzbarsky) → review+
Assignee | ||
Comment 3•21 years ago
|
||
Checking in nsExternalHelperAppService.cpp;
/cvsroot/mozilla/uriloader/exthandler/nsExternalHelperAppService.cpp,v <--
nsExternalHelperAppService.cpp
new revision: 1.220; previous revision: 1.219
done
Status: ASSIGNED → RESOLVED
Closed: 21 years ago
Resolution: --- → FIXED
Updated•9 years ago
|
Product: Core → Core Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•