Backed out changeset 2450366cf7ca (bug 1891629) for causing win msix mochitest failures
[gecko.git] / dom / url / URLWorker.h
blob8424e35ccab950560d554b2ab5304e2c527c38f0
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
10 #include "URL.h"
11 #include "URLMainThread.h"
13 namespace mozilla {
15 namespace net {
16 class nsStandardURL;
19 namespace dom {
21 class URLWorker final {
22 public:
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,
30 ErrorResult& aRv);
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);
40 } // namespace dom
41 } // namespace mozilla
43 #endif // mozilla_dom_URLWorker_h