diff options
author | wolfbeast <mcwerewolf@gmail.com> | 2018-05-12 11:09:44 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@gmail.com> | 2018-05-12 11:09:44 +0200 |
commit | cfe5ef4ac7cd59f094b538252161ad74223c47da (patch) | |
tree | e5c0ee7e70db84bd2bfc6062784006769e9df730 /dom/system/gonk/nsVolumeMountLock.h | |
parent | 28cf922aa9af4d4b8e0a3ce91dc1270a55986909 (diff) | |
download | UXP-cfe5ef4ac7cd59f094b538252161ad74223c47da.tar UXP-cfe5ef4ac7cd59f094b538252161ad74223c47da.tar.gz UXP-cfe5ef4ac7cd59f094b538252161ad74223c47da.tar.lz UXP-cfe5ef4ac7cd59f094b538252161ad74223c47da.tar.xz UXP-cfe5ef4ac7cd59f094b538252161ad74223c47da.zip |
Remove Gonk build directories
Diffstat (limited to 'dom/system/gonk/nsVolumeMountLock.h')
-rw-r--r-- | dom/system/gonk/nsVolumeMountLock.h | 56 |
1 files changed, 0 insertions, 56 deletions
diff --git a/dom/system/gonk/nsVolumeMountLock.h b/dom/system/gonk/nsVolumeMountLock.h deleted file mode 100644 index caf5b2ad5..000000000 --- a/dom/system/gonk/nsVolumeMountLock.h +++ /dev/null @@ -1,56 +0,0 @@ -/* This Source Code Form is subject to the terms of the Mozilla Public - * License, v. 2.0. If a copy of the MPL was not distributed with this file, - * You can obtain one at http://mozilla.org/MPL/2.0/. */ - -#ifndef mozilla_system_nsvolumemountlock_h__ -#define mozilla_system_nsvolumemountlock_h__ - -#include "nsIVolumeMountLock.h" - -#include "mozilla/dom/WakeLock.h" -#include "nsIObserver.h" -#include "nsString.h" -#include "nsTArray.h" -#include "nsWeakReference.h" - -class nsIVolume; - -namespace mozilla { -namespace system { - -/* The VolumeMountLock is designed so that it can be used in the Child or - * Parent process. While the VolumeMountLock object exists, then the - * VolumeManager/AutoMounter will prevent a mounted volume from being - * shared with the PC. - */ - -class nsVolumeMountLock final : public nsIVolumeMountLock, - public nsIObserver, - public nsSupportsWeakReference -{ -public: - NS_DECL_ISUPPORTS - NS_DECL_NSIOBSERVER - NS_DECL_NSIVOLUMEMOUNTLOCK - - static already_AddRefed<nsVolumeMountLock> Create(const nsAString& volumeName); - - const nsString& VolumeName() const { return mVolumeName; } - -private: - nsVolumeMountLock(const nsAString& aVolumeName); - ~nsVolumeMountLock(); - - nsresult Init(); - nsresult Lock(nsIVolume* aVolume); - - RefPtr<dom::WakeLock> mWakeLock; - nsString mVolumeName; - int32_t mVolumeGeneration; - bool mUnlocked; -}; - -} // namespace system -} // namespace mozilla - -#endif // mozilla_system_nsvolumemountlock_h__ |