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 nsAString
& aURL
,
25 const Optional
<nsAString
>& aBase
, ErrorResult
& aRv
);
27 static already_AddRefed
<URLWorker
> Constructor(const GlobalObject
& aGlobal
,
28 const nsAString
& aURL
,
29 const nsAString
& aBase
,
32 static void CreateObjectURL(const GlobalObject
& aGlobal
, Blob
& aBlob
,
33 nsAString
& aResult
, mozilla::ErrorResult
& aRv
);
35 static void RevokeObjectURL(const GlobalObject
& aGlobal
,
36 const nsAString
& aUrl
, ErrorResult
& aRv
);
38 static bool IsValidURL(const GlobalObject
& aGlobal
, const nsAString
& aUrl
,
43 } // namespace mozilla
45 #endif // mozilla_dom_URLWorker_h