blob: 48d36dd1a520d4e49f050d5afaeaeefecf975249 [file] [log] [blame]
// Copyright 2018 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/**
* @see https://wicg.github.io/mediasession/#enumdef-mediasessionplaybackstate
* @enum {string}
*/
const MediaSessionPlaybackState = {
NONE: 'none',
PAUSED: 'paused',
PLAYING: 'playing'
};