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

Unified Diff: Source/platform/AsyncMethodRunner.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 | « no previous file | Source/platform/CheckedInt.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/platform/AsyncMethodRunner.h
diff --git a/Source/platform/AsyncMethodRunner.h b/Source/platform/AsyncMethodRunner.h
index c60aa535912611b8dcaa59eeef53f3d15f999ea8..9eb40890807e34ea4b072864ba35146dc60c2045 100644
--- a/Source/platform/AsyncMethodRunner.h
+++ b/Source/platform/AsyncMethodRunner.h
@@ -120,9 +120,9 @@ public:
}
private:
- void fired(Timer<AsyncMethodRunner<TargetClass> >*) { (m_object->*m_method)(); }
+ void fired(Timer<AsyncMethodRunner<TargetClass>>*) { (m_object->*m_method)(); }
- Timer<AsyncMethodRunner<TargetClass> > m_timer;
+ Timer<AsyncMethodRunner<TargetClass>> m_timer;
// FIXME: oilpan: AsyncMethodRunner should be moved to the heap and m_object should be traced.
// This raw pointer is safe as long as AsyncMethodRunner<X> is held by the X itself
« no previous file with comments | « no previous file | Source/platform/CheckedInt.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698