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

Side by Side Diff: third_party/WebKit/Source/bindings/core/v8/V8BindingDesign.md

Issue 2595543003: Rename toV8(...) function in Blink to ToV8(...). (Closed)
Patch Set: Rebasing... Created 3 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 unified diff | Download patch
OLDNEW
1 # Design of V8 bindings 1 # Design of V8 bindings
2 2
3 This document explains key concepts in the V8 binding architecture 3 This document explains key concepts in the V8 binding architecture
4 except the lifetime management of DOM wrappers. 4 except the lifetime management of DOM wrappers.
5 See [V8GCController.md](V8GCController.md) to learn the lifetime management. 5 See [V8GCController.md](V8GCController.md) to learn the lifetime management.
6 6
7 [TOC] 7 [TOC]
8 8
9 ## Isolate 9 ## Isolate
10 10
(...skipping 242 matching lines...) Expand 10 before | Expand all | Expand 10 after
253 </script> 253 </script>
254 </body></html> 254 </body></html>
255 255
256 // iframe.html 256 // iframe.html
257 <script> 257 <script>
258 </script> 258 </script>
259 ``` 259 ```
260 260
261 To make sure that a DOM wrapper is created in a correct context, you need to 261 To make sure that a DOM wrapper is created in a correct context, you need to
262 make sure that the current context must be set to the correct context 262 make sure that the current context must be set to the correct context
263 whenever you call toV8(). If you're not sure what context to use, 263 whenever you call ToV8(). If you're not sure what context to use,
264 ask haraken@chromium.org. 264 ask haraken@chromium.org.
265 265
OLDNEW
« no previous file with comments | « third_party/WebKit/Source/bindings/core/v8/V8Binding.cpp ('k') | third_party/WebKit/Source/bindings/core/v8/V8BindingTest.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698