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

Unified Diff: third_party/WebKit/Source/bindings/core/v8/V8DOMConfiguration.h

Issue 2768393004: [Bindings] Rename CachedAccessorCallback method in generated code (Closed)
Patch Set: . Created 3 years, 9 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/V8DOMConfiguration.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/bindings/core/v8/V8DOMConfiguration.h
diff --git a/third_party/WebKit/Source/bindings/core/v8/V8DOMConfiguration.h b/third_party/WebKit/Source/bindings/core/v8/V8DOMConfiguration.h
index 4de7b411e33af871440a543cdce451e128dcf613..4d4a74834cf999da0367ec9bf181b2f22ac03c6d 100644
--- a/third_party/WebKit/Source/bindings/core/v8/V8DOMConfiguration.h
+++ b/third_party/WebKit/Source/bindings/core/v8/V8DOMConfiguration.h
@@ -72,7 +72,7 @@ class CORE_EXPORT V8DOMConfiguration final {
AllWorlds = MainWorld | NonMainWorlds,
};
- typedef v8::Local<v8::Private> (*CachedAccessorCallback)(v8::Isolate*);
+ typedef v8::Local<v8::Private> (*CachedPropertyKey)(v8::Isolate*);
// AttributeConfiguration translates into calls to SetNativeDataProperty() on
// either the instance or the prototype ObjectTemplate, based on
@@ -86,7 +86,7 @@ class CORE_EXPORT V8DOMConfiguration final {
// TODO(vogelheim): This has to be removed too since it's only used in
// accessors.
// The accessor's 'result' is stored in a private property.
- CachedAccessorCallback cachedAccessorCallback;
+ CachedPropertyKey cachedPropertyKey;
const WrapperTypeInfo* data;
// v8::PropertyAttribute
unsigned attribute : 8;
@@ -140,7 +140,7 @@ class CORE_EXPORT V8DOMConfiguration final {
v8::FunctionCallback getter;
v8::FunctionCallback setter;
// The accessor's 'result' is stored in a private property.
- CachedAccessorCallback cachedAccessorCallback;
+ CachedPropertyKey cachedPropertyKey;
const WrapperTypeInfo* data;
// v8::PropertyAttribute
unsigned attribute : 8;
« no previous file with comments | « no previous file | third_party/WebKit/Source/bindings/core/v8/V8DOMConfiguration.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698