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

Unified Diff: include/v8.h

Issue 2262313002: [api] Move documentation to the function it describes. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: [api] Move documentation to the function it describes. Created 4 years, 4 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/v8.h
diff --git a/include/v8.h b/include/v8.h
index 0e8b26e3f4cbcf495122ef2a76704fd0c2b624f5..84316763bfdb61c91d7521d6488d9fd8ed0aef39 100644
--- a/include/v8.h
+++ b/include/v8.h
@@ -4802,7 +4802,6 @@ class V8_EXPORT ObjectTemplate : public Template {
* \param data A piece of data that will be passed to the callbacks
* whenever they are invoked.
*/
- void SetHandler(const IndexedPropertyHandlerConfiguration& configuration);
// TODO(dcarney): deprecate
void SetIndexedPropertyHandler(
IndexedPropertyGetterCallback getter,
@@ -4814,6 +4813,8 @@ class V8_EXPORT ObjectTemplate : public Template {
SetHandler(IndexedPropertyHandlerConfiguration(getter, setter, query,
deleter, enumerator, data));
}
+ void SetHandler(const IndexedPropertyHandlerConfiguration& configuration);
+
/**
* Sets the callback to be used when calling instances created from
* this template as a function. If no callback is set, instances
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698