Bug 552605 - Fix some whitespace issues that crept in. r=jrmuizel

This commit is contained in:
Joe Drew 2011-07-01 13:03:30 -04:00
Родитель a9a00aa598
Коммит 2a4e32e300
2 изменённых файлов: 13 добавлений и 8 удалений

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

@ -290,7 +290,8 @@ class nsProgressNotificationProxy : public nsIProgressEventSink
public:
nsProgressNotificationProxy(nsIChannel* channel,
imgIRequest* proxy)
: mImageRequest(proxy) {
: mImageRequest(proxy)
{
channel->GetNotificationCallbacks(getter_AddRefs(mOriginalCallbacks));
}
@ -314,7 +315,8 @@ NS_IMETHODIMP
nsProgressNotificationProxy::OnProgress(nsIRequest* request,
nsISupports* ctxt,
PRUint64 progress,
PRUint64 progressMax) {
PRUint64 progressMax)
{
nsCOMPtr<nsILoadGroup> loadGroup;
request->GetLoadGroup(getter_AddRefs(loadGroup));
@ -332,7 +334,8 @@ NS_IMETHODIMP
nsProgressNotificationProxy::OnStatus(nsIRequest* request,
nsISupports* ctxt,
nsresult status,
const PRUnichar* statusArg) {
const PRUnichar* statusArg)
{
nsCOMPtr<nsILoadGroup> loadGroup;
request->GetLoadGroup(getter_AddRefs(loadGroup));
@ -350,7 +353,8 @@ NS_IMETHODIMP
nsProgressNotificationProxy::AsyncOnChannelRedirect(nsIChannel *oldChannel,
nsIChannel *newChannel,
PRUint32 flags,
nsIAsyncVerifyRedirectCallback *cb) {
nsIAsyncVerifyRedirectCallback *cb)
{
// Tell the original original callbacks about it too
nsCOMPtr<nsILoadGroup> loadGroup;
newChannel->GetLoadGroup(getter_AddRefs(loadGroup));
@ -370,7 +374,8 @@ nsProgressNotificationProxy::AsyncOnChannelRedirect(nsIChannel *oldChannel,
NS_IMETHODIMP
nsProgressNotificationProxy::GetInterface(const nsIID& iid,
void** result) {
void** result)
{
if (iid.Equals(NS_GET_IID(nsIProgressEventSink))) {
*result = static_cast<nsIProgressEventSink*>(this);
NS_ADDREF_THIS();

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

@ -1253,7 +1253,7 @@ imgRequest::AsyncOnChannelRedirect(nsIChannel *oldChannel,
}
return rv;
}
(void) OnRedirectVerifyCallback(NS_OK);
return NS_OK;
}
@ -1263,7 +1263,7 @@ imgRequest::OnRedirectVerifyCallback(nsresult result)
{
NS_ASSERTION(mRedirectCallback, "mRedirectCallback not set in callback");
NS_ASSERTION(mNewRedirectChannel, "mNewRedirectChannel not set in callback");
if (NS_FAILED(result)) {
mRedirectCallback->OnRedirectVerifyCallback(result);
mRedirectCallback = nsnull;
@ -1320,7 +1320,7 @@ imgRequest::OnRedirectVerifyCallback(nsresult result)
}
mKeyURI = newURI;
if (mIsInCache) {
// If we don't still have a URI or cache entry, we don't want to put
// ourselves back into the cache.