1 /* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* vim: set ts=8 sts=2 et sw=2 tw=80: */
3 /* This Source Code Form is subject to the terms of the Mozilla Public
4 * License, v. 2.0. If a copy of the MPL was not distributed with this
5 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
7 #ifndef mozilla_dom_URLWorker_h
8 #define mozilla_dom_URLWorker_h
11 #include "URLMainThread.h"
21 class URLWorker final
{
23 static already_AddRefed
<URLWorker
> Constructor(
24 const GlobalObject
& aGlobal
, const nsACString
& aURL
,
25 const Optional
<nsACString
>& aBase
, ErrorResult
& aRv
);
27 static already_AddRefed
<URLWorker
> Constructor(const GlobalObject
& aGlobal
,
28 const nsACString
& aURL
,
29 const nsACString
& aBase
,
32 static void CreateObjectURL(const GlobalObject
& aGlobal
, Blob
& aBlob
,
33 nsACString
& aResult
, mozilla::ErrorResult
& aRv
);
34 static void RevokeObjectURL(const GlobalObject
& aGlobal
,
35 const nsACString
& aUrl
, ErrorResult
& aRv
);
36 static bool IsValidObjectURL(const GlobalObject
& aGlobal
,
37 const nsACString
& aUrl
, ErrorResult
& aRv
);
41 } // namespace mozilla
43 #endif // mozilla_dom_URLWorker_h