2012-11-16 07:25:26 +04:00
|
|
|
/* -*- Mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; tab-width: 40 -*- */
|
|
|
|
/* vim: set ts=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/. */
|
|
|
|
|
|
|
|
#ifndef mozilla_dom_audiochannelcommon_h__
|
|
|
|
#define mozilla_dom_audiochannelcommon_h__
|
|
|
|
|
|
|
|
namespace mozilla {
|
|
|
|
namespace dom {
|
|
|
|
|
2013-09-02 13:45:44 +04:00
|
|
|
enum AudioChannelState {
|
|
|
|
AUDIO_CHANNEL_STATE_NORMAL = 0,
|
|
|
|
AUDIO_CHANNEL_STATE_MUTED,
|
|
|
|
AUDIO_CHANNEL_STATE_FADED,
|
|
|
|
AUDIO_CHANNEL_STATE_LAST
|
|
|
|
};
|
2014-03-20 14:45:55 +04:00
|
|
|
|
2012-11-16 07:25:26 +04:00
|
|
|
} // namespace dom
|
|
|
|
} // namespace mozilla
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|