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

Unified Diff: third_party/WebKit/Source/core/events/ApplicationCacheErrorEvent.cpp

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.cpp
diff --git a/third_party/WebKit/Source/core/events/ApplicationCacheErrorEvent.cpp b/third_party/WebKit/Source/core/events/ApplicationCacheErrorEvent.cpp
index e0784d6975233a4f10eab1d1ff766e9c1145be47..57d17a75075aa82dd4877eaeefcb97ddc91b6b79 100644
--- a/third_party/WebKit/Source/core/events/ApplicationCacheErrorEvent.cpp
+++ b/third_party/WebKit/Source/core/events/ApplicationCacheErrorEvent.cpp
@@ -39,10 +39,6 @@ static const String& errorReasonToString(WebApplicationCacheHost::ErrorReason re
return emptyString();
}
-ApplicationCacheErrorEvent::ApplicationCacheErrorEvent()
-{
-}
-
ApplicationCacheErrorEvent::ApplicationCacheErrorEvent(WebApplicationCacheHost::ErrorReason reason, const String& url, int status, const String& message)
: Event(EventTypeNames::error, false, false)
, m_reason(errorReasonToString(reason))

Powered by Google App Engine
This is Rietveld 408576698