謎's キッチン

謎のひとりごと。Amazon欲しい物リストはこちら: https://www.amazon.co.jp/hz/wishlist/ls/CCPOV7C6JTD2

メモ

http://lxr.mozilla.org/mozilla/source/docshell/base/nsDocShell.cpp#6480
Components.interfaces.nsIChannel.LOAD_INITIAL_DOCUMENT_URI
Components.interfaces.nsIChannel.LOAD_BACKGROUND
nsIURILoader
@mozilla.org/uriloader;1
URILoader.OpenURI(Channel,false,this);
http://lxr.mozilla.org/mozilla/source/uriloader/base/nsURILoader.cpp
nsCOMPtr loader =
new nsDocumentOpenInfo(aWindowContext, aIsContentPreferred, this);
loader->Open(channel);
aChannel->AsyncOpen(this, nsnull);
結局AsyncOpenで同じorz
nsCOMPtr
postDataSeekable(do_QueryInterface(aPostData));
if (postDataSeekable) {
rv = postDataSeekable->Seek(nsISeekableStream::NS_SEEK_SET, 0);
}
って事でSeekをsetすればいいのかな?