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

Unified Diff: Source/bindings/core/v8/SharedPersistent.h

Issue 921813002: Fix template angle bracket syntax in bindings (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Created 5 years, 10 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/bindings/core/v8/SerializedScriptValue.cpp ('k') | Source/bindings/core/v8/ToV8Test.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/core/v8/SharedPersistent.h
diff --git a/Source/bindings/core/v8/SharedPersistent.h b/Source/bindings/core/v8/SharedPersistent.h
index 47339d6d72de5ccc62ca9605e41ded3a1d4c4b44..0b36a4ad0224cb51d5ed794292b912cdc8ef6a4e 100644
--- a/Source/bindings/core/v8/SharedPersistent.h
+++ b/Source/bindings/core/v8/SharedPersistent.h
@@ -39,10 +39,10 @@
namespace blink {
template <typename T>
-class SharedPersistent : public RefCounted<SharedPersistent<T> > {
+class SharedPersistent : public RefCounted<SharedPersistent<T>> {
WTF_MAKE_NONCOPYABLE(SharedPersistent);
public:
- static PassRefPtr<SharedPersistent<T> > create(v8::Handle<T> value, v8::Isolate* isolate)
+ static PassRefPtr<SharedPersistent<T>> create(v8::Handle<T> value, v8::Isolate* isolate)
{
return adoptRef(new SharedPersistent<T>(value, isolate));
}
« no previous file with comments | « Source/bindings/core/v8/SerializedScriptValue.cpp ('k') | Source/bindings/core/v8/ToV8Test.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698