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

Unified Diff: third_party/WebKit/Source/core/events/ClipboardEvent.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/events/ClipboardEvent.h
diff --git a/third_party/WebKit/Source/core/events/ClipboardEvent.h b/third_party/WebKit/Source/core/events/ClipboardEvent.h
index 144428de68f971f56b01b4e9c0eb800159c543fa..a399a34a013006fb80ea9355d9725b0ec3f0250a 100644
--- a/third_party/WebKit/Source/core/events/ClipboardEvent.h
+++ b/third_party/WebKit/Source/core/events/ClipboardEvent.h
@@ -33,10 +33,6 @@ class ClipboardEvent final : public Event {
DEFINE_WRAPPERTYPEINFO();
public:
~ClipboardEvent() override;
- static ClipboardEvent* create()
- {
- return new ClipboardEvent();
- }
static ClipboardEvent* create(const AtomicString& type, bool canBubble, bool cancelable, DataTransfer* dataTransfer)
{
@@ -48,7 +44,6 @@ public:
DECLARE_VIRTUAL_TRACE();
private:
- ClipboardEvent();
ClipboardEvent(const AtomicString& type, bool canBubble, bool cancelable, DataTransfer* clipboardData);
const AtomicString& interfaceName() const override;

Powered by Google App Engine
This is Rietveld 408576698