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

Unified Diff: third_party/WebKit/Source/modules/mediarecorder/BlobEvent.h

Issue 2217763003: Remove Blink-WebKit-only document.createEvent strings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 4 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/modules/mediarecorder/BlobEvent.h
diff --git a/third_party/WebKit/Source/modules/mediarecorder/BlobEvent.h b/third_party/WebKit/Source/modules/mediarecorder/BlobEvent.h
index be00c3438a79fcda9d41bb5a0491bde4a7f1f77c..49b382d2120551f6d99d9360990eca4f1b6280b3 100644
--- a/third_party/WebKit/Source/modules/mediarecorder/BlobEvent.h
+++ b/third_party/WebKit/Source/modules/mediarecorder/BlobEvent.h
@@ -20,7 +20,6 @@ class MODULES_EXPORT BlobEvent final : public Event {
public:
~BlobEvent() override {}
- static BlobEvent* create();
static BlobEvent* create(const AtomicString& type, const BlobEventInit& initializer);
static BlobEvent* create(const AtomicString& type, Blob*);
@@ -32,7 +31,6 @@ public:
DECLARE_VIRTUAL_TRACE();
private:
- BlobEvent() {}
BlobEvent(const AtomicString& type, const BlobEventInit& initializer);
BlobEvent(const AtomicString& type, Blob*);

Powered by Google App Engine
This is Rietveld 408576698