URLWorker.h (1555B)
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/. */ 6 7 #ifndef mozilla_dom_URLWorker_h 8 #define mozilla_dom_URLWorker_h 9 10 #include "URL.h" 11 #include "URLMainThread.h" 12 13 namespace mozilla { 14 15 namespace net { 16 class nsStandardURL; 17 } 18 19 namespace dom { 20 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); 26 27 static already_AddRefed<URLWorker> Constructor(const GlobalObject& aGlobal, 28 const nsACString& aURL, 29 const nsACString& aBase, 30 ErrorResult& aRv); 31 32 static void CreateObjectURL(const GlobalObject& aGlobal, 33 const BlobOrMediaSource& aObj, 34 nsACString& aResult, mozilla::ErrorResult& aRv); 35 static void RevokeObjectURL(const GlobalObject& aGlobal, 36 const nsACString& aUrl, ErrorResult& aRv); 37 static bool IsBoundToBlob(const GlobalObject& aGlobal, const nsACString& aURL, 38 ErrorResult& aRv); 39 }; 40 41 } // namespace dom 42 } // namespace mozilla 43 44 #endif // mozilla_dom_URLWorker_h