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

Unified Diff: third_party/WebKit/Source/bindings/tests/results/core/V8TestTraceWrapperReferences.h

Issue 1876383003: Introduce infrastructure for tracing ScriptWrappables. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Revert to traceActiveScriptWrappables - C++ is happier Created 4 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
Index: third_party/WebKit/Source/bindings/tests/results/core/V8TestTraceWrapperReferences.h
diff --git a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceCheckSecurity.h b/third_party/WebKit/Source/bindings/tests/results/core/V8TestTraceWrapperReferences.h
similarity index 68%
copy from third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceCheckSecurity.h
copy to third_party/WebKit/Source/bindings/tests/results/core/V8TestTraceWrapperReferences.h
index 11d2821b2b25e943d00631680baf7e78a5ecd162..de0c521bfc50e0d937103076c2eb3322fafa7454 100644
--- a/third_party/WebKit/Source/bindings/tests/results/core/V8TestInterfaceCheckSecurity.h
+++ b/third_party/WebKit/Source/bindings/tests/results/core/V8TestTraceWrapperReferences.h
@@ -4,36 +4,37 @@
// This file has been auto-generated by code_generator_v8.py. DO NOT MODIFY!
-#ifndef V8TestInterfaceCheckSecurity_h
-#define V8TestInterfaceCheckSecurity_h
+#ifndef V8TestTraceWrapperReferences_h
+#define V8TestTraceWrapperReferences_h
#include "bindings/core/v8/ScriptWrappable.h"
#include "bindings/core/v8/ToV8.h"
#include "bindings/core/v8/V8Binding.h"
#include "bindings/core/v8/V8DOMWrapper.h"
+#include "bindings/core/v8/V8Node.h"
#include "bindings/core/v8/WrapperTypeInfo.h"
-#include "bindings/tests/idls/core/TestInterfaceCheckSecurity.h"
+#include "bindings/tests/idls/core/TestTraceWrapperReferences.h"
#include "core/CoreExport.h"
#include "platform/heap/Handle.h"
namespace blink {
-class V8TestInterfaceCheckSecurity {
- STATIC_ONLY(V8TestInterfaceCheckSecurity);
+class V8TestTraceWrapperReferences {
+ STATIC_ONLY(V8TestTraceWrapperReferences);
public:
CORE_EXPORT static bool hasInstance(v8::Local<v8::Value>, v8::Isolate*);
static v8::Local<v8::Object> findInstanceInPrototypeChain(v8::Local<v8::Value>, v8::Isolate*);
CORE_EXPORT static v8::Local<v8::FunctionTemplate> domTemplate(v8::Isolate*);
- static TestInterfaceCheckSecurity* toImpl(v8::Local<v8::Object> object)
+ static TestTraceWrapperReferences* toImpl(v8::Local<v8::Object> object)
{
- return toScriptWrappable(object)->toImpl<TestInterfaceCheckSecurity>();
+ return toScriptWrappable(object)->toImpl<TestTraceWrapperReferences>();
}
- CORE_EXPORT static TestInterfaceCheckSecurity* toImplWithTypeCheck(v8::Isolate*, v8::Local<v8::Value>);
+ CORE_EXPORT static TestTraceWrapperReferences* toImplWithTypeCheck(v8::Isolate*, v8::Local<v8::Value>);
CORE_EXPORT static const WrapperTypeInfo wrapperTypeInfo;
template<typename VisitorDispatcher>
static void trace(VisitorDispatcher visitor, ScriptWrappable* scriptWrappable)
{
- visitor->trace(scriptWrappable->toImpl<TestInterfaceCheckSecurity>());
+ visitor->trace(scriptWrappable->toImpl<TestTraceWrapperReferences>());
}
static const int internalFieldCount = v8DefaultWrapperInternalFieldCount + 0;
static void installConditionallyEnabledProperties(v8::Local<v8::Object>, v8::Isolate*) { }
@@ -41,10 +42,10 @@ public:
};
template <>
-struct V8TypeOf<TestInterfaceCheckSecurity> {
- typedef V8TestInterfaceCheckSecurity Type;
+struct V8TypeOf<TestTraceWrapperReferences> {
+ typedef V8TestTraceWrapperReferences Type;
};
} // namespace blink
-#endif // V8TestInterfaceCheckSecurity_h
+#endif // V8TestTraceWrapperReferences_h

Powered by Google App Engine
This is Rietveld 408576698