Bug 1556489 - P9. Make method static. r=nika,mayhemer

Differential Revision: https://phabricator.services.mozilla.com/D40966
This commit is contained in:
Matt Woodrow 2019-08-06 17:52:33 +10:00 коммит произвёл Jean-Yves Avenard
Родитель e579f452c1
Коммит c69966609c
2 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -10405,8 +10405,8 @@ static nsresult AppendSegmentToString(nsIInputStream* aIn, void* aClosure,
return NS_OK;
}
nsresult nsDocShell::AddHeadersToChannel(nsIInputStream* aHeadersData,
nsIChannel* aGenericChannel) {
/* static */ nsresult nsDocShell::AddHeadersToChannel(
nsIInputStream* aHeadersData, nsIChannel* aGenericChannel) {
nsCOMPtr<nsIHttpChannel> httpChannel = do_QueryInterface(aGenericChannel);
NS_ENSURE_STATE(httpChannel);

Просмотреть файл

@ -630,8 +630,8 @@ class nsDocShell final : public nsDocLoader,
nsresult DoURILoad(nsDocShellLoadState* aLoadState, bool aLoadFromExternal,
nsIDocShell** aDocShell, nsIRequest** aRequest);
nsresult AddHeadersToChannel(nsIInputStream* aHeadersData,
nsIChannel* aChannel);
static nsresult AddHeadersToChannel(nsIInputStream* aHeadersData,
nsIChannel* aChannel);
nsresult DoChannelLoad(nsIChannel* aChannel, nsIURILoader* aURILoader,
bool aBypassClassifier);