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

Unified Diff: third_party/WebKit/Source/bindings/IDLExtendedAttributes.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 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/IDLDictionaryBase.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 43d3cab33a405dab4c7baa5fc56cd0e718552281..9d5dd81304b186b575fed42eeb257db22b6a2ae9 100644
--- a/third_party/WebKit/Source/bindings/IDLExtendedAttributes.md
+++ b/third_party/WebKit/Source/bindings/IDLExtendedAttributes.md
@@ -1335,14 +1335,14 @@ interface HTMLFoo {
Without `[CachedAttribute]`, the key getter works in the following way:
1. HTMLFoo::key() is called in Blink.
-2. The result of HTMLFoo::key() is passed to toV8(), and is converted to a wrapped object.
+2. The result of HTMLFoo::key() is passed to ToV8(), and is converted to a wrapped object.
3. The wrapped object is returned.
In case where HTMLFoo::key() or the operation to wrap the result is costly, you can cache the wrapped object onto the DOM object. With CachedAttribute, the key getter works in the following way:
1. If the wrapped object is cached, the cached wrapped object is returned. That's it.
2. Otherwise, `HTMLFoo::key()` is called in Blink.
-3. The result of `HTMLFoo::key()` is passed to `toV8()`, and is converted to a wrapped object.
+3. The result of `HTMLFoo::key()` is passed to `ToV8()`, and is converted to a wrapped object.
4. The wrapped object is cached.
5. The wrapped object is returned.
@@ -1350,7 +1350,7 @@ In case where HTMLFoo::key() or the operation to wrap the result is costly, you
1. `HTMLFoo::serializedValue()` is called in Blink.
2. The result of `HTMLFoo::serializedValue()` is deserialized.
-3. The deserialized result is passed to `toV8()`, and is converted to a wrapped object.
+3. The deserialized result is passed to `ToV8()`, and is converted to a wrapped object.
4. The wrapped object is returned.
In case where `HTMLFoo::serializedValue()`, the deserialization or the operation to wrap the result is costly, you can cache the wrapped object onto the DOM object. With `[CachedAttribute]`, the serializedValue getter works in the following way:
@@ -1358,7 +1358,7 @@ In case where `HTMLFoo::serializedValue()`, the deserialization or the operation
1. If the wrapped object is cached, the cached wrapped object is returned. That's it.
2. Otherwise, `HTMLFoo::serializedValue()` is called in Blink.
3. The result of `HTMLFoo::serializedValue()` is deserialized.
-4. The deserialized result is passed to `toJS()` or `toV8()`, and is converted to a wrapped object.
+4. The deserialized result is passed to `toJS()` or `ToV8()`, and is converted to a wrapped object.
5. The wrapped object is cached.
6. The wrapped object is returned.
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/IDLDictionaryBase.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698