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

Unified Diff: Source/core/dom/DocumentOrderedMap.h

Issue 1006723003: Fix template angle bracket syntax in dom (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 9 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 | « Source/core/dom/DocumentMarkerController.cpp ('k') | Source/core/dom/DocumentOrderedMap.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/dom/DocumentOrderedMap.h
diff --git a/Source/core/dom/DocumentOrderedMap.h b/Source/core/dom/DocumentOrderedMap.h
index 55455c236cb59d614cc5877e000b3b0be77a5e01..f1e80873826ed3b1dd3360e5db145a506c06ad2d 100644
--- a/Source/core/dom/DocumentOrderedMap.h
+++ b/Source/core/dom/DocumentOrderedMap.h
@@ -53,7 +53,7 @@ public:
bool containsMultiple(const AtomicString&) const;
// concrete instantiations of the get<>() method template
Element* getElementById(const AtomicString&, const TreeScope*) const;
- const WillBeHeapVector<RawPtrWillBeMember<Element> >& getAllElementsById(const AtomicString&, const TreeScope*) const;
+ const WillBeHeapVector<RawPtrWillBeMember<Element>>& getAllElementsById(const AtomicString&, const TreeScope*) const;
Element* getElementByMapName(const AtomicString&, const TreeScope*) const;
Element* getElementByLowercasedMapName(const AtomicString&, const TreeScope*) const;
Element* getElementByLabelForAttribute(const AtomicString&, const TreeScope*) const;
@@ -76,7 +76,7 @@ private:
RawPtrWillBeMember<Element> element;
unsigned count;
- WillBeHeapVector<RawPtrWillBeMember<Element> > orderedList;
+ WillBeHeapVector<RawPtrWillBeMember<Element>> orderedList;
};
using Map = WillBeHeapHashMap<AtomicString, OwnPtrWillBeMember<MapEntry>>;
« no previous file with comments | « Source/core/dom/DocumentMarkerController.cpp ('k') | Source/core/dom/DocumentOrderedMap.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698