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

Unified Diff: third_party/WebKit/Source/core/events/ResourceProgressEvent.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/ResourceProgressEvent.h
diff --git a/third_party/WebKit/Source/core/events/ResourceProgressEvent.h b/third_party/WebKit/Source/core/events/ResourceProgressEvent.h
index b6b41ce6ca0f6bcbc32579c5b6f5b95144ed9940..b9f727cd9d40e42107db9051ad2601d0a2b2fa21 100644
--- a/third_party/WebKit/Source/core/events/ResourceProgressEvent.h
+++ b/third_party/WebKit/Source/core/events/ResourceProgressEvent.h
@@ -46,10 +46,6 @@ namespace blink {
class CORE_EXPORT ResourceProgressEvent final : public ProgressEvent {
DEFINE_WRAPPERTYPEINFO();
public:
- static ResourceProgressEvent* create()
- {
- return new ResourceProgressEvent;
- }
static ResourceProgressEvent* create(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total, const String& url)
{
return new ResourceProgressEvent(type, lengthComputable, loaded, total, url);
@@ -62,7 +58,6 @@ public:
DECLARE_VIRTUAL_TRACE();
protected:
- ResourceProgressEvent();
ResourceProgressEvent(const AtomicString& type, bool lengthComputable, unsigned long long loaded, unsigned long long total, const String& url);
private:

Powered by Google App Engine
This is Rietveld 408576698