Bug 1867925 - Mark some storage-access-api tests as intermittent after wpt-sync....
[gecko.git] / toolkit / profile / ProfileUnlockerAndroid.h
bloba8dc33bcb5c347b28306318b07631ce0e9ed0934
1 /* This Source Code Form is subject to the terms of the Mozilla Public
2 * License, v. 2.0. If a copy of the MPL was not distributed with this
3 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
5 #ifndef ProfileUnlockerAndroid_h
6 #define ProfileUnlockerAndroid_h
8 #include "nsIProfileUnlocker.h"
10 namespace mozilla {
12 class ProfileUnlockerAndroid final : public nsIProfileUnlocker {
13 public:
14 NS_DECL_ISUPPORTS
15 NS_DECL_NSIPROFILEUNLOCKER
17 explicit ProfileUnlockerAndroid(const pid_t aPid);
19 private:
20 ~ProfileUnlockerAndroid();
21 pid_t mPid;
24 } // namespace mozilla
26 #endif // ProfileUnlockerAndroid_h