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

Unified Diff: third_party/WebKit/Source/core/css/FontFaceSetLoadEvent.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/core/css/FontFaceSetLoadEvent.h
diff --git a/third_party/WebKit/Source/core/css/FontFaceSetLoadEvent.h b/third_party/WebKit/Source/core/css/FontFaceSetLoadEvent.h
index da7407242133e4d68f8a047eedabb45ede1d83b7..0f8b94e133dd6cd3f8c57885cf7a63a41d944b35 100644
--- a/third_party/WebKit/Source/core/css/FontFaceSetLoadEvent.h
+++ b/third_party/WebKit/Source/core/css/FontFaceSetLoadEvent.h
@@ -43,11 +43,6 @@ namespace blink {
class FontFaceSetLoadEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
- static FontFaceSetLoadEvent* create()
- {
- return new FontFaceSetLoadEvent();
- }
-
static FontFaceSetLoadEvent* create(const AtomicString& type, const FontFaceSetLoadEventInit& initializer)
{
return new FontFaceSetLoadEvent(type, initializer);
@@ -67,7 +62,6 @@ public:
DECLARE_VIRTUAL_TRACE();
private:
- FontFaceSetLoadEvent();
FontFaceSetLoadEvent(const AtomicString&, const FontFaceArray&);
FontFaceSetLoadEvent(const AtomicString&, const FontFaceSetLoadEventInit&);

Powered by Google App Engine
This is Rietveld 408576698