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

Unified Diff: Source/bindings/tests/results/V8TestInterface.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
Index: Source/bindings/tests/results/V8TestInterface.cpp
diff --git a/Source/bindings/tests/results/V8TestInterface.cpp b/Source/bindings/tests/results/V8TestInterface.cpp
index 76768a543f67d087f209d2ac98acdf0057a6c740..190a24601a06b7308c669d5f6a8296ac72a8f725 100644
--- a/Source/bindings/tests/results/V8TestInterface.cpp
+++ b/Source/bindings/tests/results/V8TestInterface.cpp
@@ -37,7 +37,6 @@
#include "RuntimeEnabledFeatures.h"
#include "V8Node.h"
#include "V8NodeList.h"
-#include "V8ReferencedType.h"
#include "V8TestInterfaceEmpty.h"
#include "V8TestObject.h"
#include "bindings/tests/idls/TestImplements.h"
@@ -706,11 +705,11 @@ void V8TestInterface::visitDOMWrapper(void* object, const v8::Persistent<v8::Obj
TestInterface* impl = fromInternalPointer(object);
v8::Local<v8::Object> creationContext = v8::Local<v8::Object>::New(isolate, wrapper);
V8WrapperInstantiationScope scope(creationContext, isolate);
- ReferencedType* referencedName = impl->referencedName();
+ TestObj* referencedName = impl->referencedName();
if (referencedName) {
- if (!DOMDataStore::containsWrapper<V8ReferencedType>(referencedName, isolate))
+ if (!DOMDataStore::containsWrapper<V8TestObject>(referencedName, isolate))
wrap(referencedName, creationContext, isolate);
- DOMDataStore::setWrapperReference<V8ReferencedType>(wrapper, referencedName, isolate);
+ DOMDataStore::setWrapperReference<V8TestObject>(wrapper, referencedName, isolate);
}
setObjectGroup(object, wrapper, isolate);
}
« no previous file with comments | « Source/bindings/tests/idls/TestInterfacePython.idl ('k') | Source/bindings/tests/results/V8TestInterfacePython.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698