gecko-dev/dom/file/uri/BlobURL.h
Sylvestre Ledru 265e672179 Bug 1511181 - Reformat everything to the Google coding style r=ehsan a=clang-format
# ignore-this-changeset

--HG--
extra : amend_source : 4d301d3b0b8711c4692392aa76088ba7fd7d1022
2018-11-30 11:46:48 +01:00

108 lines
3.1 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_BlobURL_h
#define mozilla_dom_BlobURL_h
#include "mozilla/Attributes.h"
#include "nsCOMPtr.h"
#include "nsISerializable.h"
#include "nsSimpleURI.h"
#include "nsIIPCSerializableURI.h"
#include "prtime.h"
namespace mozilla {
namespace dom {
/**
* These URIs refer to host objects with "blob" scheme.
*/
class BlobURL final : public mozilla::net::nsSimpleURI {
private:
BlobURL();
public:
NS_DECL_ISUPPORTS_INHERITED
NS_DECL_NSISERIALIZABLE
NS_DECL_NSICLASSINFO
NS_DECL_NSIIPCSERIALIZABLEURI
// Override CloneInternal() and EqualsInternal()
virtual nsresult CloneInternal(RefHandlingEnum aRefHandlingMode,
const nsACString& newRef,
nsIURI** aClone) override;
virtual nsresult EqualsInternal(nsIURI* aOther,
RefHandlingEnum aRefHandlingMode,
bool* aResult) override;
// Override StartClone to hand back a BlobURL
virtual mozilla::net::nsSimpleURI* StartClone(
RefHandlingEnum refHandlingMode, const nsACString& newRef) override {
BlobURL* url = new BlobURL();
SetRefOnClone(url, refHandlingMode, newRef);
return url;
}
bool Revoked() const { return mRevoked; }
NS_IMETHOD Mutate(nsIURIMutator** _retval) override;
private:
virtual ~BlobURL() = default;
nsresult SetScheme(const nsACString& aProtocol) override;
bool Deserialize(const mozilla::ipc::URIParams&);
nsresult ReadPrivate(nsIObjectInputStream* stream);
public:
class Mutator final : public nsIURIMutator,
public BaseURIMutator<BlobURL>,
public nsISerializable {
NS_DECL_ISUPPORTS
NS_FORWARD_SAFE_NSIURISETTERS_RET(mURI)
NS_DEFINE_NSIMUTATOR_COMMON
NS_IMETHOD
Write(nsIObjectOutputStream* aOutputStream) override {
return NS_ERROR_NOT_IMPLEMENTED;
}
MOZ_MUST_USE NS_IMETHOD Read(nsIObjectInputStream* aStream) override {
return InitFromInputStream(aStream);
}
Mutator() = default;
private:
~Mutator() = default;
friend class BlobURL;
};
friend BaseURIMutator<BlobURL>;
bool mRevoked;
};
#define NS_HOSTOBJECTURI_CID \
{ \
0xf5475c51, 0x59a7, 0x4757, { \
0xb3, 0xd9, 0xe2, 0x11, 0xa9, 0x41, 0x08, 0x72 \
} \
}
#define NS_HOSTOBJECTURIMUTATOR_CID \
{ \
0xbbe50ef2, 0x80eb, 0x469d, { \
0xb7, 0x0d, 0x02, 0x85, 0x82, 0x75, 0x38, 0x9f \
} \
}
} // namespace dom
} // namespace mozilla
#endif /* mozilla_dom_BlobURL_h */