2017-11-21 19:33:16 +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: */
|
|
|
|
/* 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/. */
|
|
|
|
|
|
|
|
#include "AutoplayPolicy.h"
|
|
|
|
|
|
|
|
#include "mozilla/EventStateManager.h"
|
|
|
|
#include "mozilla/Preferences.h"
|
|
|
|
#include "mozilla/dom/HTMLMediaElement.h"
|
|
|
|
#include "nsIDocument.h"
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
|
|
|
/* static */ bool
|
|
|
|
AutoplayPolicy::IsDocumentAllowedToPlay(nsIDocument* aDoc)
|
|
|
|
{
|
|
|
|
return aDoc ? aDoc->HasBeenUserActivated() : false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* static */ bool
|
|
|
|
AutoplayPolicy::IsMediaElementAllowedToPlay(NotNull<HTMLMediaElement*> aElement)
|
|
|
|
{
|
|
|
|
if (Preferences::GetBool("media.autoplay.enabled")) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2017-11-24 19:50:53 +03:00
|
|
|
// TODO : this old way would be removed when user-gestures-needed becomes
|
|
|
|
// as a default option to block autoplay.
|
2017-11-27 14:20:15 +03:00
|
|
|
if (!Preferences::GetBool("media.autoplay.enabled.user-gestures-needed", false)) {
|
|
|
|
// If user triggers load() or seek() before play(), we would also allow the
|
|
|
|
// following play().
|
|
|
|
return aElement->GetAndClearHasUserInteractedLoadOrSeek() ||
|
|
|
|
EventStateManager::IsHandlingUserInput();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Muted content
|
|
|
|
if (aElement->Volume() == 0.0 || aElement->Muted()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Media has already loaded metadata and doesn't contain audio track
|
|
|
|
if (aElement->IsVideo() &&
|
|
|
|
aElement->ReadyState() >= nsIDOMHTMLMediaElement::HAVE_METADATA &&
|
|
|
|
!aElement->HasAudio()) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
return AutoplayPolicy::IsDocumentAllowedToPlay(aElement->OwnerDoc());
|
2017-11-21 19:33:16 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|