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

Unified Diff: third_party/WebKit/Source/modules/encryptedmedia/MediaEncryptedEvent.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/encryptedmedia/MediaEncryptedEvent.h
diff --git a/third_party/WebKit/Source/modules/encryptedmedia/MediaEncryptedEvent.h b/third_party/WebKit/Source/modules/encryptedmedia/MediaEncryptedEvent.h
index 9724160bdc7193f16132aba48a60d99b51300bc9..c26b1567e0a5b77001aaaff09bfff2d3b367301d 100644
--- a/third_party/WebKit/Source/modules/encryptedmedia/MediaEncryptedEvent.h
+++ b/third_party/WebKit/Source/modules/encryptedmedia/MediaEncryptedEvent.h
@@ -36,11 +36,6 @@ class MediaEncryptedEvent final : public Event {
public:
~MediaEncryptedEvent() override;
- static MediaEncryptedEvent* create()
- {
- return new MediaEncryptedEvent;
- }
-
static MediaEncryptedEvent* create(const AtomicString& type, const MediaEncryptedEventInit& initializer)
{
return new MediaEncryptedEvent(type, initializer);
@@ -54,7 +49,6 @@ public:
DECLARE_VIRTUAL_TRACE();
private:
- MediaEncryptedEvent();
MediaEncryptedEvent(const AtomicString& type, const MediaEncryptedEventInit& initializer);
String m_initDataType;

Powered by Google App Engine
This is Rietveld 408576698