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

Side by Side Diff: gin/wrappable.h

Issue 1112923003: Replace Handle<> with Local in remaining gin/* (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 7 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 unified diff | Download patch
« no previous file with comments | « gin/try_catch.cc ('k') | gin/wrappable.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef GIN_WRAPPABLE_H_ 5 #ifndef GIN_WRAPPABLE_H_
6 #define GIN_WRAPPABLE_H_ 6 #define GIN_WRAPPABLE_H_
7 7
8 #include "base/template_util.h" 8 #include "base/template_util.h"
9 #include "gin/converter.h" 9 #include "gin/converter.h"
10 #include "gin/gin_export.h" 10 #include "gin/gin_export.h"
11 #include "gin/public/wrapper_info.h" 11 #include "gin/public/wrapper_info.h"
12 12
13 namespace gin { 13 namespace gin {
14 14
15 namespace internal { 15 namespace internal {
16 16
17 GIN_EXPORT void* FromV8Impl(v8::Isolate* isolate, 17 GIN_EXPORT void* FromV8Impl(v8::Isolate* isolate,
18 v8::Handle<v8::Value> val, 18 v8::Local<v8::Value> val,
19 WrapperInfo* info); 19 WrapperInfo* info);
20 20
21 } // namespace internal 21 } // namespace internal
22 22
23 23
24 // Wrappable is a base class for C++ objects that have corresponding v8 wrapper 24 // Wrappable is a base class for C++ objects that have corresponding v8 wrapper
25 // objects. To retain a Wrappable object on the stack, use a gin::Handle. 25 // objects. To retain a Wrappable object on the stack, use a gin::Handle.
26 // 26 //
27 // USAGE: 27 // USAGE:
28 // // my_class.h 28 // // my_class.h
(...skipping 28 matching lines...) Expand all
57 class ObjectTemplateBuilder; 57 class ObjectTemplateBuilder;
58 58
59 // Non-template base class to share code between templates instances. 59 // Non-template base class to share code between templates instances.
60 class GIN_EXPORT WrappableBase { 60 class GIN_EXPORT WrappableBase {
61 protected: 61 protected:
62 WrappableBase(); 62 WrappableBase();
63 virtual ~WrappableBase(); 63 virtual ~WrappableBase();
64 64
65 virtual ObjectTemplateBuilder GetObjectTemplateBuilder(v8::Isolate* isolate); 65 virtual ObjectTemplateBuilder GetObjectTemplateBuilder(v8::Isolate* isolate);
66 66
67 v8::Handle<v8::Object> GetWrapperImpl(v8::Isolate* isolate, 67 v8::Local<v8::Object> GetWrapperImpl(v8::Isolate* isolate,
68 WrapperInfo* wrapper_info); 68 WrapperInfo* wrapper_info);
69 69
70 private: 70 private:
71 static void FirstWeakCallback( 71 static void FirstWeakCallback(
72 const v8::WeakCallbackInfo<WrappableBase>& data); 72 const v8::WeakCallbackInfo<WrappableBase>& data);
73 static void SecondWeakCallback( 73 static void SecondWeakCallback(
74 const v8::WeakCallbackInfo<WrappableBase>& data); 74 const v8::WeakCallbackInfo<WrappableBase>& data);
75 75
76 v8::Global<v8::Object> wrapper_; // Weak 76 v8::Global<v8::Object> wrapper_; // Weak
77 77
78 DISALLOW_COPY_AND_ASSIGN(WrappableBase); 78 DISALLOW_COPY_AND_ASSIGN(WrappableBase);
79 }; 79 };
80 80
81 81
82 template<typename T> 82 template<typename T>
83 class Wrappable : public WrappableBase { 83 class Wrappable : public WrappableBase {
84 public: 84 public:
85 // Retrieve (or create) the v8 wrapper object cooresponding to this object. 85 // Retrieve (or create) the v8 wrapper object cooresponding to this object.
86 // To customize the wrapper created for a subclass, override GetWrapperInfo() 86 // To customize the wrapper created for a subclass, override GetWrapperInfo()
87 // instead of overriding this function. 87 // instead of overriding this function.
88 v8::Handle<v8::Object> GetWrapper(v8::Isolate* isolate) { 88 v8::Local<v8::Object> GetWrapper(v8::Isolate* isolate) {
89 return GetWrapperImpl(isolate, &T::kWrapperInfo); 89 return GetWrapperImpl(isolate, &T::kWrapperInfo);
90 } 90 }
91 91
92 protected: 92 protected:
93 Wrappable() {} 93 Wrappable() {}
94 virtual ~Wrappable() {} 94 virtual ~Wrappable() {}
95 95
96 private: 96 private:
97 DISALLOW_COPY_AND_ASSIGN(Wrappable); 97 DISALLOW_COPY_AND_ASSIGN(Wrappable);
98 }; 98 };
99 99
100 100
101 // This converter handles any subclass of Wrappable. 101 // This converter handles any subclass of Wrappable.
102 template<typename T> 102 template<typename T>
103 struct Converter<T*, typename base::enable_if< 103 struct Converter<T*, typename base::enable_if<
104 base::is_convertible<T*, WrappableBase*>::value>::type> { 104 base::is_convertible<T*, WrappableBase*>::value>::type> {
105 static v8::Handle<v8::Value> ToV8(v8::Isolate* isolate, T* val) { 105 static v8::Local<v8::Value> ToV8(v8::Isolate* isolate, T* val) {
106 return val->GetWrapper(isolate); 106 return val->GetWrapper(isolate);
107 } 107 }
108 108
109 static bool FromV8(v8::Isolate* isolate, v8::Handle<v8::Value> val, T** out) { 109 static bool FromV8(v8::Isolate* isolate, v8::Local<v8::Value> val, T** out) {
110 *out = static_cast<T*>(static_cast<WrappableBase*>( 110 *out = static_cast<T*>(static_cast<WrappableBase*>(
111 internal::FromV8Impl(isolate, val, &T::kWrapperInfo))); 111 internal::FromV8Impl(isolate, val, &T::kWrapperInfo)));
112 return *out != NULL; 112 return *out != NULL;
113 } 113 }
114 }; 114 };
115 115
116 } // namespace gin 116 } // namespace gin
117 117
118 #endif // GIN_WRAPPABLE_H_ 118 #endif // GIN_WRAPPABLE_H_
OLDNEW
« no previous file with comments | « gin/try_catch.cc ('k') | gin/wrappable.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698