Bug 1854550 - pt 10. Allow LOG() with zero extra arguments r=glandium
[gecko.git] / dom / file / FileCreatorHelper.h
blobf0b666cc58af86da9b44de3cf7d56b93ccd6d28d
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_FileCreatorHelper_h
8 #define mozilla_dom_FileCreatorHelper_h
10 #include "mozilla/Attributes.h"
11 #include "mozilla/RefPtr.h"
12 #include "nsISupportsImpl.h"
14 // Undefine the macro of CreateFile to avoid FileCreatorHelper#CreateFile being
15 // replaced by FileCreatorHelper#CreateFileW.
16 #ifdef CreateFile
17 # undef CreateFile
18 #endif
20 class nsIFile;
21 class nsIGlobalObject;
23 namespace mozilla {
24 class ErrorResult;
26 namespace dom {
28 struct ChromeFilePropertyBag;
29 class Promise;
31 class FileCreatorHelper final {
32 public:
33 static already_AddRefed<Promise> CreateFile(nsIGlobalObject* aGlobalObject,
34 nsIFile* aFile,
35 const ChromeFilePropertyBag& aBag,
36 bool aIsFromNsIFile,
37 ErrorResult& aRv);
40 } // namespace dom
41 } // namespace mozilla
43 #endif // mozilla_dom_FileCreatorHelper_h