| OLD | NEW |
| 1 // Copyright 2015 The Chromium Authors. All rights reserved. | 1 // Copyright 2015 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef BlobEvent_h | 5 #ifndef BlobEvent_h |
| 6 #define BlobEvent_h | 6 #define BlobEvent_h |
| 7 | 7 |
| 8 #include "core/dom/DOMHighResTimeStamp.h" | 8 #include "core/dom/DOMHighResTimeStamp.h" |
| 9 #include "core/fileapi/Blob.h" | 9 #include "core/fileapi/Blob.h" |
| 10 #include "modules/EventModules.h" | 10 #include "modules/EventModules.h" |
| 11 #include "modules/ModulesExport.h" | 11 #include "modules/ModulesExport.h" |
| 12 #include "wtf/text/AtomicString.h" | 12 #include "platform/wtf/text/AtomicString.h" |
| 13 | 13 |
| 14 namespace blink { | 14 namespace blink { |
| 15 | 15 |
| 16 class Blob; | 16 class Blob; |
| 17 class BlobEventInit; | 17 class BlobEventInit; |
| 18 | 18 |
| 19 class MODULES_EXPORT BlobEvent final : public Event { | 19 class MODULES_EXPORT BlobEvent final : public Event { |
| 20 DEFINE_WRAPPERTYPEINFO(); | 20 DEFINE_WRAPPERTYPEINFO(); |
| 21 | 21 |
| 22 public: | 22 public: |
| (...skipping 15 matching lines...) Expand all Loading... |
| 38 BlobEvent(const AtomicString& type, const BlobEventInit& initializer); | 38 BlobEvent(const AtomicString& type, const BlobEventInit& initializer); |
| 39 BlobEvent(const AtomicString& type, Blob*, double); | 39 BlobEvent(const AtomicString& type, Blob*, double); |
| 40 | 40 |
| 41 Member<Blob> blob_; | 41 Member<Blob> blob_; |
| 42 DOMHighResTimeStamp timecode_; | 42 DOMHighResTimeStamp timecode_; |
| 43 }; | 43 }; |
| 44 | 44 |
| 45 } // namespace blink | 45 } // namespace blink |
| 46 | 46 |
| 47 #endif // BlobEvent_h | 47 #endif // BlobEvent_h |
| OLD | NEW |