2013-11-19 13:27:37 -08:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2012-05-21 04:12:37 -07:00
|
|
|
/* 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/. */
|
2009-05-07 12:21:54 -07:00
|
|
|
|
|
|
|
#include "nsIOUtil.h"
|
|
|
|
#include "nsIInputStream.h"
|
|
|
|
#include "nsIOutputStream.h"
|
|
|
|
#include "nsStreamUtils.h"
|
|
|
|
|
2014-04-27 00:06:00 -07:00
|
|
|
NS_IMPL_ISUPPORTS(nsIOUtil, nsIIOUtil)
|
2009-05-07 12:21:54 -07:00
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2014-05-14 13:15:46 -07:00
|
|
|
nsIOUtil::InputStreamIsBuffered(nsIInputStream* aStream, bool* aResult)
|
2009-05-07 12:21:54 -07:00
|
|
|
{
|
2014-05-14 13:15:46 -07:00
|
|
|
if (NS_WARN_IF(!aStream)) {
|
2013-11-19 13:27:37 -08:00
|
|
|
return NS_ERROR_INVALID_ARG;
|
2014-05-14 13:15:46 -07:00
|
|
|
}
|
|
|
|
*aResult = NS_InputStreamIsBuffered(aStream);
|
2009-05-07 12:21:54 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|
|
|
|
|
|
|
|
NS_IMETHODIMP
|
2014-05-14 13:15:46 -07:00
|
|
|
nsIOUtil::OutputStreamIsBuffered(nsIOutputStream* aStream, bool* aResult)
|
2009-05-07 12:21:54 -07:00
|
|
|
{
|
2014-05-14 13:15:46 -07:00
|
|
|
if (NS_WARN_IF(!aStream)) {
|
2013-11-19 13:27:37 -08:00
|
|
|
return NS_ERROR_INVALID_ARG;
|
2014-05-14 13:15:46 -07:00
|
|
|
}
|
|
|
|
*aResult = NS_OutputStreamIsBuffered(aStream);
|
2009-05-07 12:21:54 -07:00
|
|
|
return NS_OK;
|
|
|
|
}
|