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

Unified Diff: Source/platform/Supplementable.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/PODRedBlackTree.h ('k') | Source/platform/TraceEvent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/Supplementable.h
diff --git a/Source/platform/Supplementable.h b/Source/platform/Supplementable.h
index 25f0cf7ccfe7883537e9ba671dcb6a05cccb5e41..ae8f8fc5a82031e08897d15fb0ef229662dabbec 100644
--- a/Source/platform/Supplementable.h
+++ b/Source/platform/Supplementable.h
@@ -99,12 +99,12 @@ struct SupplementableTraits;
template<typename T>
struct SupplementableTraits<T, true> {
- typedef RawPtr<SupplementBase<T, true> > SupplementArgumentType;
+ typedef RawPtr<SupplementBase<T, true>> SupplementArgumentType;
};
template<typename T>
struct SupplementableTraits<T, false> {
- typedef PassOwnPtr<SupplementBase<T, false> > SupplementArgumentType;
+ typedef PassOwnPtr<SupplementBase<T, false>> SupplementArgumentType;
};
template<bool>
@@ -161,14 +161,14 @@ public:
}
protected:
- typedef HeapHashMap<const char*, Member<SupplementBase<T, true> >, PtrHash<const char*> > SupplementMap;
+ typedef HeapHashMap<const char*, Member<SupplementBase<T, true>>, PtrHash<const char*>> SupplementMap;
SupplementMap m_supplements;
};
template<typename T>
class SupplementableTracing<T, false> {
protected:
- typedef HashMap<const char*, OwnPtr<SupplementBase<T, false> >, PtrHash<const char*> > SupplementMap;
+ typedef HashMap<const char*, OwnPtr<SupplementBase<T, false>>, PtrHash<const char*>> SupplementMap;
SupplementMap m_supplements;
};
@@ -224,12 +224,12 @@ template<typename T>
class Supplementable : public SupplementableBase<T, false> { };
template<typename T>
-struct ThreadingTrait<SupplementBase<T, true> > {
+struct ThreadingTrait<SupplementBase<T, true>> {
static const ThreadAffinity Affinity = ThreadingTrait<T>::Affinity;
};
template<typename T>
-struct ThreadingTrait<SupplementableBase<T, true> > {
+struct ThreadingTrait<SupplementableBase<T, true>> {
static const ThreadAffinity Affinity = ThreadingTrait<T>::Affinity;
};
« no previous file with comments | « Source/platform/PODRedBlackTree.h ('k') | Source/platform/TraceEvent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698