2015-05-03 22:32:37 +03:00
|
|
|
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2014-08-27 06:28:03 +04:00
|
|
|
/* 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_dom_PresentationDeviceManager_h__
|
|
|
|
#define mozilla_dom_PresentationDeviceManager_h__
|
|
|
|
|
|
|
|
#include "nsIObserver.h"
|
|
|
|
#include "nsIPresentationDevice.h"
|
|
|
|
#include "nsIPresentationDeviceManager.h"
|
|
|
|
#include "nsIPresentationDeviceProvider.h"
|
|
|
|
#include "nsCOMArray.h"
|
2015-05-21 06:06:00 +03:00
|
|
|
#include "nsWeakReference.h"
|
2014-08-27 06:28:03 +04:00
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2015-03-21 19:28:04 +03:00
|
|
|
class PresentationDeviceManager final : public nsIPresentationDeviceManager
|
2015-03-27 21:52:19 +03:00
|
|
|
, public nsIPresentationDeviceListener
|
|
|
|
, public nsIObserver
|
2015-05-21 06:06:00 +03:00
|
|
|
, public nsSupportsWeakReference
|
2014-08-27 06:28:03 +04:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
NS_DECL_ISUPPORTS
|
|
|
|
NS_DECL_NSIPRESENTATIONDEVICEMANAGER
|
|
|
|
NS_DECL_NSIPRESENTATIONDEVICELISTENER
|
|
|
|
NS_DECL_NSIOBSERVER
|
|
|
|
|
|
|
|
PresentationDeviceManager();
|
|
|
|
|
|
|
|
private:
|
|
|
|
virtual ~PresentationDeviceManager();
|
|
|
|
|
2015-07-30 19:40:00 +03:00
|
|
|
void Init();
|
|
|
|
|
|
|
|
void Shutdown();
|
|
|
|
|
2014-08-27 06:28:03 +04:00
|
|
|
void LoadDeviceProviders();
|
|
|
|
|
|
|
|
void UnloadDeviceProviders();
|
|
|
|
|
|
|
|
void NotifyDeviceChange(nsIPresentationDevice* aDevice,
|
|
|
|
const char16_t* aType);
|
|
|
|
|
|
|
|
nsCOMArray<nsIPresentationDeviceProvider> mProviders;
|
|
|
|
nsCOMArray<nsIPresentationDevice> mDevices;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif /* mozilla_dom_PresentationDeviceManager_h__ */
|