https://github.com/mozilla/gecko-dev
Raw File
Tip revision: f559288c74e03e22fbee75e7c2a27dbcbf5bbca3 authored by ffxbld on 09 October 2012, 21:25:05 UTC
Added FENNEC_17_0b1_RELEASE FENNEC_17_0b1_BUILD1 tag(s) for changeset f908ec056095. DONTBUILD CLOSED TREE a=release
Tip revision: f559288
nsByteBuffer.h
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* 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/. */

#ifndef nsByteBuffer_h__
#define nsByteBuffer_h__

#include "mozilla/Attributes.h"

#include "nsIByteBuffer.h"

class ByteBufferImpl MOZ_FINAL : public nsIByteBuffer {
public:
  ByteBufferImpl(void);

  NS_DECL_ISUPPORTS

  static nsresult
  Create(nsISupports *aOuter, REFNSIID aIID, void **aResult);

  NS_IMETHOD Init(uint32_t aBufferSize);
  NS_IMETHOD_(uint32_t) GetLength(void) const;
  NS_IMETHOD_(uint32_t) GetBufferSize(void) const;
  NS_IMETHOD_(char*) GetBuffer() const;
  NS_IMETHOD_(bool) Grow(uint32_t aNewSize);
  NS_IMETHOD_(int32_t) Fill(nsresult* aErrorCode, nsIInputStream* aStream,
                            uint32_t aKeep);

  char* mBuffer;
  uint32_t mSpace;
  uint32_t mLength;
private:
  ~ByteBufferImpl();
};

#endif // nsByteBuffer_h__
back to top