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

Unified Diff: third_party/WebKit/Source/core/html/HTMLStyleElement.h

Issue 1554903002: EventSender<T> singletons are better off on the Oilpan heap. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remove no-op cancelEvent()s Created 4 years, 12 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/html/HTMLStyleElement.h
diff --git a/third_party/WebKit/Source/core/html/HTMLStyleElement.h b/third_party/WebKit/Source/core/html/HTMLStyleElement.h
index 476052b66d3e406b2e117a8e030122ba0be130df..6ceae7a2bcd33469358a83ea7f66e1c1da46e09b 100644
--- a/third_party/WebKit/Source/core/html/HTMLStyleElement.h
+++ b/third_party/WebKit/Source/core/html/HTMLStyleElement.h
@@ -31,7 +31,7 @@ namespace blink {
class HTMLStyleElement;
template<typename T> class EventSender;
-typedef EventSender<HTMLStyleElement> StyleEventSender;
+using StyleEventSender = EventSender<HTMLStyleElement>;
class HTMLStyleElement final : public HTMLElement, private StyleElement {
DEFINE_WRAPPERTYPEINFO();
« no previous file with comments | « third_party/WebKit/Source/core/html/HTMLSourceElement.cpp ('k') | third_party/WebKit/Source/core/html/HTMLStyleElement.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698