blob: f70ec2f9b61f0fab3bd33fa854fbff05921a1311 [file] [log] [blame]
/*
Copyright (C) 2008 Nokia Corporation and/or its subsidiary(-ies)
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Library General Public
License as published by the Free Software Foundation; either
version 2 of the License, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Library General Public License for more details.
You should have received a copy of the GNU Library General Public License
along with this library; see the file COPYING.LIB. If not, write to
the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
Boston, MA 02110-1301, USA.
*/
#ifndef NavigatorMediaStream_h
#define NavigatorMediaStream_h
#include "base/memory/scoped_refptr.h"
#include "platform/heap/Handle.h"
#include "platform/wtf/Allocator.h"
#include "platform/wtf/text/WTFString.h"
namespace blink {
class ExceptionState;
class MediaStreamConstraints;
class Navigator;
class V8NavigatorUserMediaErrorCallback;
class V8NavigatorUserMediaSuccessCallback;
class NavigatorMediaStream {
STATIC_ONLY(NavigatorMediaStream);
public:
static void getUserMedia(Navigator&,
const MediaStreamConstraints&,
V8NavigatorUserMediaSuccessCallback*,
V8NavigatorUserMediaErrorCallback*,
ExceptionState&);
};
} // namespace blink
#endif // NavigatorMediaStream_h