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

Unified Diff: Source/bindings/tests/results/V8TestInterfacePython.cpp

Issue 153883003: [SVG] SVGAnimatedTransform{,List} migration to new SVG property impl. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove m_zoomAndPan Created 6 years, 10 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 | « Source/bindings/tests/results/V8TestInterface.cpp ('k') | Source/core/core.gypi » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/tests/results/V8TestInterfacePython.cpp
diff --git a/Source/bindings/tests/results/V8TestInterfacePython.cpp b/Source/bindings/tests/results/V8TestInterfacePython.cpp
index ab69d6022558ee6c387d3affc2ca8101b0a7515a..1af9c6c5d0d10c09500952e655f2f7517613b78c 100644
--- a/Source/bindings/tests/results/V8TestInterfacePython.cpp
+++ b/Source/bindings/tests/results/V8TestInterfacePython.cpp
@@ -36,9 +36,9 @@
#include "RuntimeEnabledFeatures.h"
#include "V8Node.h"
-#include "V8ReferencedType.h"
#include "V8TestImplementedAs.h"
#include "V8TestInterfaceEmpty.h"
+#include "V8TestObjectPython.h"
#include "bindings/tests/idls/TestImplements.h"
#include "bindings/tests/idls/TestImplements2Implementation.h"
#include "bindings/tests/idls/TestPartialInterfacePython.h"
@@ -865,11 +865,11 @@ void V8TestInterfacePython::visitDOMWrapper(void* object, const v8::Persistent<v
TestInterfacePythonImplementation* impl = fromInternalPointer(object);
v8::Local<v8::Object> creationContext = v8::Local<v8::Object>::New(isolate, wrapper);
V8WrapperInstantiationScope scope(creationContext, isolate);
- ReferencedType* referencedName = impl->referencedName();
+ TestObjectPython* referencedName = impl->referencedName();
if (referencedName) {
- if (!DOMDataStore::containsWrapper<V8ReferencedType>(referencedName, isolate))
+ if (!DOMDataStore::containsWrapper<V8TestObjectPython>(referencedName, isolate))
wrap(referencedName, creationContext, isolate);
- DOMDataStore::setWrapperReference<V8ReferencedType>(wrapper, referencedName, isolate);
+ DOMDataStore::setWrapperReference<V8TestObjectPython>(wrapper, referencedName, isolate);
}
setObjectGroup(object, wrapper, isolate);
}
« no previous file with comments | « Source/bindings/tests/results/V8TestInterface.cpp ('k') | Source/core/core.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698