mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-04 04:58:00 +00:00
8bbeee69cf
--HG-- rename : dom/base/BlobSet.cpp => dom/file/BlobSet.cpp rename : dom/base/BlobSet.h => dom/file/BlobSet.h rename : dom/base/File.cpp => dom/file/File.cpp rename : dom/base/File.h => dom/file/File.h rename : dom/base/FileList.cpp => dom/file/FileList.cpp rename : dom/base/FileList.h => dom/file/FileList.h rename : dom/base/FileReader.cpp => dom/file/FileReader.cpp rename : dom/base/FileReader.h => dom/file/FileReader.h rename : dom/base/MultipartBlobImpl.cpp => dom/file/MultipartBlobImpl.cpp rename : dom/base/MultipartBlobImpl.h => dom/file/MultipartBlobImpl.h rename : dom/base/MutableBlobStorage.cpp => dom/file/MutableBlobStorage.cpp rename : dom/base/MutableBlobStorage.h => dom/file/MutableBlobStorage.h rename : dom/base/MutableBlobStreamListener.cpp => dom/file/MutableBlobStreamListener.cpp rename : dom/base/MutableBlobStreamListener.h => dom/file/MutableBlobStreamListener.h rename : dom/ipc/Blob.cpp => dom/file/ipc/Blob.cpp rename : dom/ipc/BlobChild.h => dom/file/ipc/BlobChild.h rename : dom/ipc/BlobParent.h => dom/file/ipc/BlobParent.h rename : dom/ipc/BlobTypes.ipdlh => dom/file/ipc/BlobTypes.ipdlh rename : dom/ipc/PBlob.ipdl => dom/file/ipc/PBlob.ipdl rename : dom/ipc/PBlobStream.ipdl => dom/file/ipc/PBlobStream.ipdl rename : dom/ipc/nsIRemoteBlob.h => dom/file/ipc/nsIRemoteBlob.h rename : dom/base/nsHostObjectProtocolHandler.cpp => dom/file/nsHostObjectProtocolHandler.cpp rename : dom/base/nsHostObjectProtocolHandler.h => dom/file/nsHostObjectProtocolHandler.h rename : dom/base/nsHostObjectURI.cpp => dom/file/nsHostObjectURI.cpp rename : dom/base/nsHostObjectURI.h => dom/file/nsHostObjectURI.h rename : dom/base/nsIDOMBlob.idl => dom/file/nsIDOMBlob.idl rename : dom/base/nsIDOMFileList.idl => dom/file/nsIDOMFileList.idl rename : dom/base/test/create_file_objects.js => dom/file/tests/create_file_objects.js rename : dom/base/test/file_blobURL_expiring.html => dom/file/tests/file_blobURL_expiring.html rename : dom/base/test/file_mozfiledataurl_audio.ogg => dom/file/tests/file_mozfiledataurl_audio.ogg rename : dom/base/test/file_mozfiledataurl_doc.html => dom/file/tests/file_mozfiledataurl_doc.html rename : dom/base/test/file_mozfiledataurl_img.jpg => dom/file/tests/file_mozfiledataurl_img.jpg rename : dom/base/test/file_mozfiledataurl_inner.html => dom/file/tests/file_mozfiledataurl_inner.html rename : dom/base/test/file_mozfiledataurl_text.txt => dom/file/tests/file_mozfiledataurl_text.txt rename : dom/base/test/file_nonascii_blob_url.html => dom/file/tests/file_nonascii_blob_url.html rename : dom/base/test/fileapi_chromeScript.js => dom/file/tests/fileapi_chromeScript.js rename : dom/base/test/fileutils.js => dom/file/tests/fileutils.js rename : dom/base/test/test_blobURL_expiring.html => dom/file/tests/test_blobURL_expiring.html rename : dom/base/test/test_blob_fragment_and_query.html => dom/file/tests/test_blob_fragment_and_query.html rename : dom/base/test/test_blobconstructor.html => dom/file/tests/test_blobconstructor.html rename : dom/base/test/test_file_from_blob.html => dom/file/tests/test_file_from_blob.html rename : dom/base/test/test_file_negative_date.html => dom/file/tests/test_file_negative_date.html rename : dom/base/test/test_fileapi.html => dom/file/tests/test_fileapi.html rename : dom/base/test/test_fileapi_slice.html => dom/file/tests/test_fileapi_slice.html rename : dom/base/test/test_ipc_messagemanager_blob.html => dom/file/tests/test_ipc_messagemanager_blob.html rename : dom/base/test/test_mozfiledataurl.html => dom/file/tests/test_mozfiledataurl.html rename : dom/base/test/test_nonascii_blob_url.html => dom/file/tests/test_nonascii_blob_url.html
84 lines
2.6 KiB
C++
84 lines
2.6 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 nsHostObjectURI_h
|
|
#define nsHostObjectURI_h
|
|
|
|
#include "mozilla/Attributes.h"
|
|
#include "mozilla/dom/File.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "nsIClassInfo.h"
|
|
#include "nsIPrincipal.h"
|
|
#include "nsISerializable.h"
|
|
#include "nsIURIWithBlobImpl.h"
|
|
#include "nsIURIWithPrincipal.h"
|
|
#include "nsSimpleURI.h"
|
|
#include "nsIIPCSerializableURI.h"
|
|
#include "nsWeakReference.h"
|
|
|
|
|
|
/**
|
|
* These URIs refer to host objects: Blobs, with scheme "blob",
|
|
* MediaStreams, with scheme "mediastream", and MediaSources, with scheme
|
|
* "mediasource".
|
|
*/
|
|
class nsHostObjectURI : public mozilla::net::nsSimpleURI
|
|
, public nsIURIWithPrincipal
|
|
, public nsIURIWithBlobImpl
|
|
, public nsSupportsWeakReference
|
|
{
|
|
public:
|
|
nsHostObjectURI(nsIPrincipal* aPrincipal,
|
|
mozilla::dom::BlobImpl* aBlobImpl)
|
|
: mozilla::net::nsSimpleURI()
|
|
, mPrincipal(aPrincipal)
|
|
, mBlobImpl(aBlobImpl)
|
|
{}
|
|
|
|
// For use only from deserialization
|
|
nsHostObjectURI() : mozilla::net::nsSimpleURI() {}
|
|
|
|
NS_DECL_ISUPPORTS_INHERITED
|
|
NS_DECL_NSIURIWITHBLOBIMPL
|
|
NS_DECL_NSIURIWITHPRINCIPAL
|
|
NS_DECL_NSISERIALIZABLE
|
|
NS_DECL_NSICLASSINFO
|
|
NS_DECL_NSIIPCSERIALIZABLEURI
|
|
|
|
NS_IMETHOD SetScheme(const nsACString &aProtocol) override;
|
|
|
|
// 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 nsHostObjectURI
|
|
virtual mozilla::net::nsSimpleURI* StartClone(RefHandlingEnum refHandlingMode,
|
|
const nsACString& newRef) override
|
|
{
|
|
nsHostObjectURI* url = new nsHostObjectURI();
|
|
SetRefOnClone(url, refHandlingMode, newRef);
|
|
return url;
|
|
}
|
|
|
|
void ForgetBlobImpl();
|
|
|
|
nsCOMPtr<nsIPrincipal> mPrincipal;
|
|
RefPtr<mozilla::dom::BlobImpl> mBlobImpl;
|
|
|
|
protected:
|
|
virtual ~nsHostObjectURI() {}
|
|
};
|
|
|
|
#define NS_HOSTOBJECTURI_CID \
|
|
{ 0xf5475c51, 0x59a7, 0x4757, \
|
|
{ 0xb3, 0xd9, 0xe2, 0x11, 0xa9, 0x41, 0x08, 0x72 } }
|
|
|
|
#endif /* nsHostObjectURI_h */
|