Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(149)

Side by Side Diff: Source/modules/mediarecorder/BlobEvent.h

Issue 1354863002: MediaRecorder: Adding BlobEvent and connecting it in MediaRecorderHandler (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: BlobEvent in global-interface-listing-expected.txt, and rebase Created 5 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #ifndef BlobEvent_h
6 #define BlobEvent_h
7
8 #include "core/fileapi/Blob.h"
9 #include "modules/EventModules.h"
10 #include "modules/ModulesExport.h"
11 #include "wtf/text/AtomicString.h"
12
13 namespace blink {
14
15 class Blob;
16 class BlobEventInit;
17
18 class MODULES_EXPORT BlobEvent final : public Event {
19 DEFINE_WRAPPERTYPEINFO();
20 public:
21 ~BlobEvent() override {}
22
23 static PassRefPtrWillBeRawPtr<BlobEvent> create();
24 static PassRefPtrWillBeRawPtr<BlobEvent> create(const AtomicString& type, co nst BlobEventInit& initializer);
25 static PassRefPtrWillBeRawPtr<BlobEvent> create(const AtomicString& type, Bl ob*);
26
27 Blob* data() const { return m_blob.get(); }
28
29 // Event
30 const AtomicString& interfaceName() const final;
31
32 DECLARE_VIRTUAL_TRACE();
33
34 private:
35 BlobEvent() {}
36 BlobEvent(const AtomicString& type, const BlobEventInit& initializer);
37 BlobEvent(const AtomicString& type, Blob*);
38
39 PersistentWillBeMember<Blob> m_blob;
40 };
41
42 } // namespace blink
43
44 #endif // BlobEvent_h
OLDNEW
« no previous file with comments | « LayoutTests/webexposed/global-interface-listing-expected.txt ('k') | Source/modules/mediarecorder/BlobEvent.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698