| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2012 Google Inc. All rights reserved. | 2 * Copyright (C) 2012 Google Inc. All rights reserved. |
| 3 * | 3 * |
| 4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
| 5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
| 6 * met: | 6 * met: |
| 7 * | 7 * |
| 8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
| 9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
| 10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
| (...skipping 23 matching lines...) Expand all Loading... |
| 34 #include "bindings/v8/ScriptWrappable.h" | 34 #include "bindings/v8/ScriptWrappable.h" |
| 35 #include "core/dom/EventTarget.h" | 35 #include "core/dom/EventTarget.h" |
| 36 #include "wtf/RefCounted.h" | 36 #include "wtf/RefCounted.h" |
| 37 #include "wtf/Vector.h" | 37 #include "wtf/Vector.h" |
| 38 | 38 |
| 39 namespace WebCore { | 39 namespace WebCore { |
| 40 | 40 |
| 41 class WebKitSourceBuffer; | 41 class WebKitSourceBuffer; |
| 42 class GenericEventQueue; | 42 class GenericEventQueue; |
| 43 | 43 |
| 44 class WebKitSourceBufferList : public RefCounted<WebKitSourceBufferList>, public
ScriptWrappable, public EventTarget { | 44 class WebKitSourceBufferList : public EventTarget, public RefCounted<WebKitSourc
eBufferList>, public ScriptWrappable { |
| 45 public: | 45 public: |
| 46 static PassRefPtr<WebKitSourceBufferList> create(ScriptExecutionContext* con
text, GenericEventQueue* asyncEventQueue) | 46 static PassRefPtr<WebKitSourceBufferList> create(ScriptExecutionContext* con
text, GenericEventQueue* asyncEventQueue) |
| 47 { | 47 { |
| 48 return adoptRef(new WebKitSourceBufferList(context, asyncEventQueue)); | 48 return adoptRef(new WebKitSourceBufferList(context, asyncEventQueue)); |
| 49 } | 49 } |
| 50 virtual ~WebKitSourceBufferList() { } | 50 virtual ~WebKitSourceBufferList() { } |
| 51 | 51 |
| 52 unsigned long length() const; | 52 unsigned long length() const; |
| 53 WebKitSourceBuffer* item(unsigned index) const; | 53 WebKitSourceBuffer* item(unsigned index) const; |
| 54 | 54 |
| (...skipping 23 matching lines...) Expand all Loading... |
| 78 EventTargetData m_eventTargetData; | 78 EventTargetData m_eventTargetData; |
| 79 ScriptExecutionContext* m_scriptExecutionContext; | 79 ScriptExecutionContext* m_scriptExecutionContext; |
| 80 GenericEventQueue* m_asyncEventQueue; | 80 GenericEventQueue* m_asyncEventQueue; |
| 81 | 81 |
| 82 Vector<RefPtr<WebKitSourceBuffer> > m_list; | 82 Vector<RefPtr<WebKitSourceBuffer> > m_list; |
| 83 }; | 83 }; |
| 84 | 84 |
| 85 } // namespace WebCore | 85 } // namespace WebCore |
| 86 | 86 |
| 87 #endif | 87 #endif |
| OLD | NEW |