Revision 9de5d13958d63a28d1a07c605a2f116a58cff46e authored by Honza Bambas on 16 February 2016, 08:34:00 UTC, committed by Honza Bambas on 16 February 2016, 08:34:00 UTC
--HG--
extra : commitid : DK7thbJzLf8
extra : source : 651afdf7400c87cc7a2106f7b96570192d085d1d
1 parent 8d3dd1d
Raw File
nsStreamListenerWrapper.cpp
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
 * You can obtain one at http://mozilla.org/MPL/2.0/. */

#include "nsStreamListenerWrapper.h"
#ifdef DEBUG
#include "MainThreadUtils.h"
#endif

NS_IMPL_ISUPPORTS(nsStreamListenerWrapper,
                  nsIStreamListener,
                  nsIRequestObserver,
                  nsIThreadRetargetableStreamListener)

NS_IMETHODIMP
nsStreamListenerWrapper::CheckListenerChain()
{
    NS_ASSERTION(NS_IsMainThread(), "Should be on main thread!");
    nsresult rv = NS_OK;
    nsCOMPtr<nsIThreadRetargetableStreamListener> retargetableListener =
        do_QueryInterface(mListener, &rv);
    if (retargetableListener) {
        rv = retargetableListener->CheckListenerChain();
    }
    return rv;
}
back to top