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

Unified Diff: third_party/WebKit/Source/bindings/IDLExtendedAttributes.md

Issue 2819613002: Remove last remaining references to v8::Handle (all in comments/docs) in Blink. (Closed)
Patch Set: Created 3 years, 8 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 | third_party/WebKit/Source/bindings/core/v8/ScopedPersistent.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/bindings/IDLExtendedAttributes.md
diff --git a/third_party/WebKit/Source/bindings/IDLExtendedAttributes.md b/third_party/WebKit/Source/bindings/IDLExtendedAttributes.md
index 4aff4bd7aebbfe78bbb208e4a1c1128d2a34b99f..986f8f261af6827320f27ab498986192ccb4a564 100644
--- a/third_party/WebKit/Source/bindings/IDLExtendedAttributes.md
+++ b/third_party/WebKit/Source/bindings/IDLExtendedAttributes.md
@@ -811,12 +811,12 @@ interface XXX {
You can write custom bindings as V8XXX::namedPropertyQuery(...) and V8XXX::namedPropertyEnumerator(...) in Source/bindings/v8/custom/V8XXXCustom.cpp:
```c++
-v8::Handle<v8::Integer> V8XXX::namedPropertyQuery(v8::Local<v8::String> name, const v8::AccessorInfo& info)
+v8::Local<v8::Integer> V8XXX::namedPropertyQuery(v8::Local<v8::String> name, const v8::AccessorInfo& info)
{
...;
}
-v8::Handle<v8::Array> V8XXX::namedPropertyEnumerator(const v8::AccessorInfo& info)
+v8::Local<v8::Array> V8XXX::namedPropertyEnumerator(const v8::AccessorInfo& info)
{
...;
}
@@ -841,7 +841,7 @@ If you want to write custom bindings for XXX.call(...), you can use `[Custom=Leg
You can write custom `V8XXX::callAsFunctionCallback(...)` in Source/bindings/v8/custom/V8XXXCustom.cpp:
```c++
-v8::Handle<v8::Value> V8XXX::callAsFunctionCallback(const v8::Arguments& args)
+v8::Local<v8::Value> V8XXX::callAsFunctionCallback(const v8::Arguments& args)
{
...;
}
@@ -1411,7 +1411,7 @@ Consider the following example:
Then you can write custom bindings in Source/bindings/v8/custom/V8XXXConstructorCustom.cpp:
```c++
-v8::Handle<v8::Value> V8XXX::constructorCallback(const v8::Arguments& args)
+v8::Local<v8::Value> V8XXX::constructorCallback(const v8::Arguments& args)
{
...;
}
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/ScopedPersistent.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698