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

Unified Diff: third_party/WebKit/Source/core/dom/MutationRecord.h

Issue 2317083003: Use type aliases for StaticElementList/StaticNodeList (Closed)
Patch Set: Created 4 years, 3 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
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/SelectorQuery.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/core/dom/MutationRecord.h
diff --git a/third_party/WebKit/Source/core/dom/MutationRecord.h b/third_party/WebKit/Source/core/dom/MutationRecord.h
index 93fd88ecef65775f298e67e02bc89da882891929..a25882af8246913a7d88ea5a336bdde6ce78d60e 100644
--- a/third_party/WebKit/Source/core/dom/MutationRecord.h
+++ b/third_party/WebKit/Source/core/dom/MutationRecord.h
@@ -40,7 +40,7 @@ namespace blink {
class Node;
class QualifiedName;
template <typename NodeType> class StaticNodeTypeList;
-typedef StaticNodeTypeList<Node> StaticNodeList;
+using StaticNodeList = StaticNodeTypeList<Node>;
class MutationRecord : public GarbageCollectedFinalized<MutationRecord>, public ScriptWrappable {
DEFINE_WRAPPERTYPEINFO();
« no previous file with comments | « no previous file | third_party/WebKit/Source/core/dom/SelectorQuery.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698