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

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

Issue 2801083003: Rewrite references to "wtf/" to "platform/wtf/" in modules. (Closed)
Patch Set: Rebase again^3. Will try landing directly. Created 3 years, 8 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
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
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
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698