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: */
|
2012-12-06 18:29:20 +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_audio_channel_agent_h__
|
|
|
|
#define mozilla_dom_audio_channel_agent_h__
|
|
|
|
|
|
|
|
#include "nsIAudioChannelAgent.h"
|
2013-04-23 19:28:00 +04:00
|
|
|
#include "nsCycleCollectionParticipant.h"
|
2012-12-06 18:29:20 +04:00
|
|
|
#include "nsCOMPtr.h"
|
2013-04-04 00:35:05 +04:00
|
|
|
#include "nsWeakPtr.h"
|
2012-12-06 18:29:20 +04:00
|
|
|
|
2016-01-30 20:05:36 +03:00
|
|
|
class nsPIDOMWindowInner;
|
|
|
|
class nsPIDOMWindowOuter;
|
2014-03-11 14:46:04 +04:00
|
|
|
|
2012-12-06 18:29:20 +04:00
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2016-05-03 04:52:38 +03:00
|
|
|
class AudioPlaybackConfig;
|
|
|
|
|
2012-12-06 18:29:20 +04:00
|
|
|
/* Header file */
|
|
|
|
class AudioChannelAgent : public nsIAudioChannelAgent
|
|
|
|
{
|
|
|
|
public:
|
2013-04-23 19:28:00 +04:00
|
|
|
NS_DECL_CYCLE_COLLECTING_ISUPPORTS
|
2012-12-06 18:29:20 +04:00
|
|
|
NS_DECL_NSIAUDIOCHANNELAGENT
|
|
|
|
|
2013-04-23 19:28:00 +04:00
|
|
|
NS_DECL_CYCLE_COLLECTION_CLASS(AudioChannelAgent)
|
|
|
|
|
2012-12-06 18:29:20 +04:00
|
|
|
AudioChannelAgent();
|
|
|
|
|
2014-03-11 14:46:55 +04:00
|
|
|
void WindowVolumeChanged();
|
2016-05-03 04:52:38 +03:00
|
|
|
void WindowSuspendChanged(nsSuspendedTypes aSuspend);
|
2015-12-24 12:28:45 +03:00
|
|
|
void WindowAudioCaptureChanged(uint64_t aInnerWindowID, bool aCapture);
|
2014-03-11 14:46:55 +04:00
|
|
|
|
2016-01-30 20:05:36 +03:00
|
|
|
nsPIDOMWindowOuter* Window() const
|
2014-03-11 14:46:55 +04:00
|
|
|
{
|
|
|
|
return mWindow;
|
|
|
|
}
|
|
|
|
|
2015-07-10 19:38:44 +03:00
|
|
|
uint64_t WindowID() const;
|
2015-12-24 12:28:45 +03:00
|
|
|
uint64_t InnerWindowID() const;
|
2015-07-10 19:38:44 +03:00
|
|
|
|
2016-11-01 12:46:09 +03:00
|
|
|
bool IsPlayingStarted() const;
|
2016-11-01 12:46:11 +03:00
|
|
|
bool ShouldBlockMedia() const;
|
2016-11-01 12:46:09 +03:00
|
|
|
|
2012-12-06 18:29:20 +04:00
|
|
|
private:
|
|
|
|
virtual ~AudioChannelAgent();
|
2013-04-04 00:35:05 +04:00
|
|
|
|
2016-05-03 04:52:38 +03:00
|
|
|
AudioPlaybackConfig GetMediaConfig();
|
|
|
|
bool IsDisposableSuspend(nsSuspendedTypes aSuspend) const;
|
|
|
|
|
2013-04-04 00:35:05 +04:00
|
|
|
// Returns mCallback if that's non-null, or otherwise tries to get an
|
|
|
|
// nsIAudioChannelAgentCallback out of mWeakCallback.
|
|
|
|
already_AddRefed<nsIAudioChannelAgentCallback> GetCallback();
|
|
|
|
|
2017-08-10 04:00:09 +03:00
|
|
|
nsresult InitInternal(nsPIDOMWindowInner* aWindow,
|
2013-04-04 00:35:05 +04:00
|
|
|
nsIAudioChannelAgentCallback* aCallback,
|
2015-07-10 19:38:44 +03:00
|
|
|
bool aUseWeakRef);
|
2013-04-04 00:35:05 +04:00
|
|
|
|
2015-07-17 14:08:00 +03:00
|
|
|
void Shutdown();
|
|
|
|
|
2016-01-30 20:05:36 +03:00
|
|
|
nsresult FindCorrectWindow(nsPIDOMWindowInner* aWindow);
|
2015-12-11 19:17:33 +03:00
|
|
|
|
2016-01-30 20:05:36 +03:00
|
|
|
nsCOMPtr<nsPIDOMWindowOuter> mWindow;
|
2012-12-06 18:29:20 +04:00
|
|
|
nsCOMPtr<nsIAudioChannelAgentCallback> mCallback;
|
2015-07-10 19:38:44 +03:00
|
|
|
|
2013-04-04 00:35:05 +04:00
|
|
|
nsWeakPtr mWeakCallback;
|
2015-07-10 19:38:44 +03:00
|
|
|
|
2015-07-09 17:40:08 +03:00
|
|
|
uint64_t mInnerWindowID;
|
2012-12-06 18:29:20 +04:00
|
|
|
bool mIsRegToService;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
2015-07-11 15:13:50 +03:00
|
|
|
|
2015-07-13 18:25:42 +03:00
|
|
|
|
2015-07-10 19:38:51 +03:00
|
|
|
#endif
|