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

Unified Diff: Source/platform/transforms/TransformOperations.h

Issue 858663002: Fix template angle bracket syntax in platform (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Rebase Created 5 years, 11 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/platform/text/LocaleICU.cpp ('k') | Source/platform/weborigin/SecurityOriginHash.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/transforms/TransformOperations.h
diff --git a/Source/platform/transforms/TransformOperations.h b/Source/platform/transforms/TransformOperations.h
index 09008a06da570cb590794b3974e403da075f6a71..eee61bda69d400479243d47bd0df2aed50de456d 100644
--- a/Source/platform/transforms/TransformOperations.h
+++ b/Source/platform/transforms/TransformOperations.h
@@ -75,8 +75,8 @@ public:
m_operations.clear();
}
- Vector<RefPtr<TransformOperation> >& operations() { return m_operations; }
- const Vector<RefPtr<TransformOperation> >& operations() const { return m_operations; }
+ Vector<RefPtr<TransformOperation>>& operations() { return m_operations; }
+ const Vector<RefPtr<TransformOperation>>& operations() const { return m_operations; }
size_t size() const { return m_operations.size(); }
const TransformOperation* at(size_t index) const { return index < m_operations.size() ? m_operations.at(index).get() : 0; }
@@ -88,7 +88,7 @@ public:
TransformOperations add(const TransformOperations& addend) const;
private:
- Vector<RefPtr<TransformOperation> > m_operations;
+ Vector<RefPtr<TransformOperation>> m_operations;
};
} // namespace blink
« no previous file with comments | « Source/platform/text/LocaleICU.cpp ('k') | Source/platform/weborigin/SecurityOriginHash.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698