15c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)/*
25c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * Copyright (C) 2011 Google Inc. All rights reserved.
35c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *
45c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * Redistribution and use in source and binary forms, with or without
55c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * modification, are permitted provided that the following conditions
65c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * are met:
75c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * 1.  Redistributions of source code must retain the above copyright
85c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     notice, this list of conditions and the following disclaimer.
95c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * 2.  Redistributions in binary form must reproduce the above copyright
105c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     notice, this list of conditions and the following disclaimer in the
115c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *     documentation and/or other materials provided with the distribution.
125c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) *
135c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * THIS SOFTWARE IS PROVIDED BY APPLE INC. AND ITS CONTRIBUTORS ``AS IS'' AND ANY
145c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
155c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
165c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR ITS CONTRIBUTORS BE LIABLE FOR ANY
175c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
185c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
195c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
205c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
215c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
225c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
235c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) */
245c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
255c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)#ifndef NavigatorUserMediaError_h
265c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)#define NavigatorUserMediaError_h
275c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
28197021e6b966cfb06891637935ef33fff06433d1Ben Murdoch#include "bindings/core/v8/ScriptWrappable.h"
291e202183a5dc46166763171984b285173f8585e5Torne (Richard Coles)#include "wtf/text/WTFString.h"
305c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
31c1847b1379d12d0e05df27436bf19a9b1bf12deaTorne (Richard Coles)namespace blink {
325c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
33197021e6b966cfb06891637935ef33fff06433d1Ben Murdochclass NavigatorUserMediaError FINAL : public GarbageCollectedFinalized<NavigatorUserMediaError>, public ScriptWrappable {
347242dc3dbeb210b5e876a3c42d1ec1a667fc621aPrimiano Tucci    DEFINE_WRAPPERTYPEINFO();
355c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)public:
361e202183a5dc46166763171984b285173f8585e5Torne (Richard Coles)    enum Name {
371e202183a5dc46166763171984b285173f8585e5Torne (Richard Coles)        NamePermissionDenied,
381e202183a5dc46166763171984b285173f8585e5Torne (Richard Coles)        NameConstraintNotSatisfied
391e202183a5dc46166763171984b285173f8585e5Torne (Richard Coles)    };
401e202183a5dc46166763171984b285173f8585e5Torne (Richard Coles)
41197021e6b966cfb06891637935ef33fff06433d1Ben Murdoch    static NavigatorUserMediaError* create(Name, const String& message, const String& constraintName);
42197021e6b966cfb06891637935ef33fff06433d1Ben Murdoch    static NavigatorUserMediaError* create(const String& name, const String& message, const String& constraintName)
435c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    {
44197021e6b966cfb06891637935ef33fff06433d1Ben Murdoch        return new NavigatorUserMediaError(name, message, constraintName);
455c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    }
465c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
47d5428f32f5d1719f774f62e19147104ca245a3abTorne (Richard Coles)    String name() const { return m_name; }
485267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)    const String& message() const { return m_message; }
495267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)    const String& constraintName() const { return m_constraintName; }
505c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
51d6cdb82654e8f3343a693ca752d5c4cee0324e17Torne (Richard Coles)    void trace(Visitor*) { }
52d6cdb82654e8f3343a693ca752d5c4cee0324e17Torne (Richard Coles)
535c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)private:
54d5428f32f5d1719f774f62e19147104ca245a3abTorne (Richard Coles)    NavigatorUserMediaError(const String& name, const String& message, const String& constraintName)
551e202183a5dc46166763171984b285173f8585e5Torne (Richard Coles)        : m_name(name), m_message(message), m_constraintName(constraintName)
56521d96ec04ace82590870fb04353ec4f82bb150fTorne (Richard Coles)    {
57d5428f32f5d1719f774f62e19147104ca245a3abTorne (Richard Coles)        ASSERT(!name.isEmpty());
58521d96ec04ace82590870fb04353ec4f82bb150fTorne (Richard Coles)    }
595c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
60d5428f32f5d1719f774f62e19147104ca245a3abTorne (Richard Coles)    String m_name;
615267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)    String m_message;
625267f701546148b83dfbe1d151cb184385bb5c22Torne (Richard Coles)    String m_constraintName;
635c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)};
645c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
65c1847b1379d12d0e05df27436bf19a9b1bf12deaTorne (Richard Coles)} // namespace blink
665c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
675c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)#endif // NavigatorUserMediaError_h
68