mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
f44c71b4ef
--HG-- extra : rebase_source : b8eaae07c54c94c8c46c7ed4c0e226eb74584652
65 lines
1.9 KiB
C++
65 lines
1.9 KiB
C++
/* 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_nsvolumeservice_h__
|
|
#define mozilla_system_nsvolumeservice_h__
|
|
|
|
#include "mozilla/Monitor.h"
|
|
#include "mozilla/RefPtr.h"
|
|
#include "mozilla/StaticPtr.h"
|
|
#include "nsCOMPtr.h"
|
|
#include "nsIDOMWakeLockListener.h"
|
|
#include "nsIVolume.h"
|
|
#include "nsIVolumeService.h"
|
|
#include "nsVolume.h"
|
|
|
|
namespace mozilla {
|
|
namespace system {
|
|
|
|
class WakeLockCallback;
|
|
class Volume;
|
|
|
|
/***************************************************************************
|
|
* The nsVolumeData class encapsulates the data that is updated/maintained
|
|
* on the main thread in order to support the nsIVolume and nsIVolumeService
|
|
* classes.
|
|
*/
|
|
|
|
class nsVolumeService MOZ_FINAL : public nsIVolumeService,
|
|
public nsIDOMMozWakeLockListener
|
|
{
|
|
public:
|
|
NS_DECL_THREADSAFE_ISUPPORTS
|
|
NS_DECL_NSIVOLUMESERVICE
|
|
NS_DECL_NSIDOMMOZWAKELOCKLISTENER
|
|
|
|
nsVolumeService();
|
|
|
|
static already_AddRefed<nsVolumeService> GetSingleton();
|
|
//static nsVolumeService* GetSingleton();
|
|
static void Shutdown();
|
|
|
|
void UpdateVolume(nsIVolume* aVolume);
|
|
void UpdateVolumeIOThread(const Volume* aVolume);
|
|
|
|
private:
|
|
~nsVolumeService();
|
|
|
|
void CheckMountLock(const nsAString& aMountLockName,
|
|
const nsAString& aMountLockState);
|
|
already_AddRefed<nsVolume> FindVolumeByMountLockName(const nsAString& aMountLockName);
|
|
already_AddRefed<nsVolume> FindVolumeByName(const nsAString& aName);
|
|
already_AddRefed<nsVolume> CreateOrFindVolumeByName(const nsAString& aName, bool aIsFake = false);
|
|
|
|
Monitor mArrayMonitor;
|
|
nsVolume::Array mVolumeArray;
|
|
|
|
static StaticRefPtr<nsVolumeService> sSingleton;
|
|
};
|
|
|
|
} // system
|
|
} // mozilla
|
|
|
|
#endif // mozilla_system_nsvolumeservice_h__
|