mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
54 lines
1.5 KiB
C++
54 lines
1.5 KiB
C++
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
|
/* 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 mozilla_dom_cache_CacheStreamControlChild_h
|
|
#define mozilla_dom_cache_CacheStreamControlChild_h
|
|
|
|
#include "mozilla/dom/cache/ActorChild.h"
|
|
#include "mozilla/dom/cache/PCacheStreamControlChild.h"
|
|
#include "nsTObserverArray.h"
|
|
|
|
namespace mozilla {
|
|
namespace dom {
|
|
namespace cache {
|
|
|
|
class ReadStream;
|
|
|
|
class CacheStreamControlChild MOZ_FINAL : public PCacheStreamControlChild
|
|
, public ActorChild
|
|
{
|
|
public:
|
|
CacheStreamControlChild();
|
|
~CacheStreamControlChild();
|
|
|
|
void AddListener(ReadStream* aListener);
|
|
void RemoveListener(ReadStream* aListener);
|
|
|
|
void NoteClosed(const nsID& aId);
|
|
|
|
// ActorChild methods
|
|
virtual void StartDestroy() MOZ_OVERRIDE;
|
|
|
|
private:
|
|
// PCacheStreamControlChild methods
|
|
virtual void ActorDestroy(ActorDestroyReason aReason) MOZ_OVERRIDE;
|
|
virtual bool RecvClose(const nsID& aId) MOZ_OVERRIDE;
|
|
virtual bool RecvCloseAll() MOZ_OVERRIDE;
|
|
|
|
typedef nsTObserverArray<ReadStream*> ReadStreamList;
|
|
ReadStreamList mListeners;
|
|
|
|
bool mDestroyStarted;
|
|
|
|
NS_DECL_OWNINGTHREAD
|
|
};
|
|
|
|
} // namespace cache
|
|
} // namespace dom
|
|
} // namespace mozilla
|
|
|
|
#endif // mozilla_dom_cache_CacheStreamControlChild_h
|