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

Unified Diff: third_party/WebKit/Source/modules/background_sync/SyncEvent.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/background_sync/SyncEvent.h
diff --git a/third_party/WebKit/Source/modules/background_sync/SyncEvent.h b/third_party/WebKit/Source/modules/background_sync/SyncEvent.h
index 867e07b95a0dabe76df992c49a75550f93d3c2f7..0223909da29e43b393fce21a24f0d79f241ee424 100644
--- a/third_party/WebKit/Source/modules/background_sync/SyncEvent.h
+++ b/third_party/WebKit/Source/modules/background_sync/SyncEvent.h
@@ -17,10 +17,6 @@ namespace blink {
class MODULES_EXPORT SyncEvent final : public ExtendableEvent {
DEFINE_WRAPPERTYPEINFO();
public:
- static SyncEvent* create()
- {
- return new SyncEvent;
- }
static SyncEvent* create(const AtomicString& type, const String& tag, bool lastChance, WaitUntilObserver* observer)
{
return new SyncEvent(type, tag, lastChance, observer);
@@ -40,7 +36,6 @@ public:
DECLARE_VIRTUAL_TRACE();
private:
- SyncEvent();
SyncEvent(const AtomicString& type, const String&, bool, WaitUntilObserver*);
SyncEvent(const AtomicString& type, const SyncEventInit&);

Powered by Google App Engine
This is Rietveld 408576698