| 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));
|
| }
|
|
|