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

Unified Diff: third_party/WebKit/Source/core/events/ApplicationCacheErrorEvent.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/ApplicationCacheErrorEvent.h
diff --git a/third_party/WebKit/Source/core/events/ApplicationCacheErrorEvent.h b/third_party/WebKit/Source/core/events/ApplicationCacheErrorEvent.h
index 786619c479cda881661da2c6a305697f444834cc..83ac4f98ed9b746963259d79349c4713463a81bb 100644
--- a/third_party/WebKit/Source/core/events/ApplicationCacheErrorEvent.h
+++ b/third_party/WebKit/Source/core/events/ApplicationCacheErrorEvent.h
@@ -17,11 +17,6 @@ class ApplicationCacheErrorEvent final : public Event {
public:
~ApplicationCacheErrorEvent() override;
- static ApplicationCacheErrorEvent* create()
- {
- return new ApplicationCacheErrorEvent;
- }
-
static ApplicationCacheErrorEvent* create(WebApplicationCacheHost::ErrorReason reason, const String& url, int status, const String& message)
{
return new ApplicationCacheErrorEvent(reason, url, status, message);
@@ -42,7 +37,6 @@ public:
DECLARE_VIRTUAL_TRACE();
private:
- ApplicationCacheErrorEvent();
ApplicationCacheErrorEvent(WebApplicationCacheHost::ErrorReason, const String& url, int status, const String& message);
ApplicationCacheErrorEvent(const AtomicString& eventType, const ApplicationCacheErrorEventInit& initializer);

Powered by Google App Engine
This is Rietveld 408576698