15c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)/*
2926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles) * Copyright (C) 2012 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 COMPUTER, INC. ``AS IS'' AND ANY
145c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
155c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
165c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL APPLE COMPUTER, INC. OR
175c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
185c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
195c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
205c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
215c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
225c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
2302772c6a72f1ee0b226341a4f4439970c29fc861Ben Murdoch * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
245c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles) */
255c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
26926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)#ifndef MediaKeyNeededEvent_h
27926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)#define MediaKeyNeededEvent_h
285c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
2953e740f4a82e17f3ae59772501622dc354e42336Torne (Richard Coles)#include "core/html/MediaKeyError.h"
30d6cdb82654e8f3343a693ca752d5c4cee0324e17Torne (Richard Coles)#include "modules/EventModules.h"
315c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
325c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)namespace WebCore {
335c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
34926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)struct MediaKeyNeededEventInit : public EventInit {
35926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)    MediaKeyNeededEventInit();
36926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)
3709380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    String contentType;
38926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)    RefPtr<Uint8Array> initData;
39926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)};
40926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)
4109380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)class MediaKeyNeededEvent FINAL : public Event {
425c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)public:
43926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)    virtual ~MediaKeyNeededEvent();
44926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)
4507a852d8c1953036774d8f3b65d18dcfea3bb4a2Ben Murdoch    static PassRefPtrWillBeRawPtr<MediaKeyNeededEvent> create()
46926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)    {
47a9984bf9ddc3cf73fdae3f29134a2bab379e7029Ben Murdoch        return adoptRefWillBeNoop(new MediaKeyNeededEvent);
48926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)    }
49926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)
5007a852d8c1953036774d8f3b65d18dcfea3bb4a2Ben Murdoch    static PassRefPtrWillBeRawPtr<MediaKeyNeededEvent> create(const AtomicString& type, const MediaKeyNeededEventInit& initializer)
515c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    {
52a9984bf9ddc3cf73fdae3f29134a2bab379e7029Ben Murdoch        return adoptRefWillBeNoop(new MediaKeyNeededEvent(type, initializer));
535c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)    }
545c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
55926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)    virtual const AtomicString& interfaceName() const OVERRIDE;
565c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
5709380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    String contentType() const { return m_contentType; }
58926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)    Uint8Array* initData() const { return m_initData.get(); }
595c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
60d5428f32f5d1719f774f62e19147104ca245a3abTorne (Richard Coles)    virtual void trace(Visitor*) OVERRIDE;
61d5428f32f5d1719f774f62e19147104ca245a3abTorne (Richard Coles)
625c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)private:
63926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)    MediaKeyNeededEvent();
64926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)    MediaKeyNeededEvent(const AtomicString& type, const MediaKeyNeededEventInit& initializer);
655c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
6609380295ba73501a205346becac22c6978e4671dTorne (Richard Coles)    String m_contentType;
67926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)    RefPtr<Uint8Array> m_initData;
685c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)};
695c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
705c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)} // namespace WebCore
715c87bf8b86a7c82ef50fb7a89697d8e02e2553beTorne (Richard Coles)
72926b001d589ce2f10facb93dd4b87578ea35a855Torne (Richard Coles)#endif
73