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

Unified Diff: Source/bindings/v8/WrapperTypeInfo.h

Issue 23444025: Remove calls to to-be-deprecated Persistent functions. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 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 | « Source/bindings/v8/V8ValueCache.cpp ('k') | Source/bindings/v8/custom/V8InjectedScriptManager.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/bindings/v8/WrapperTypeInfo.h
diff --git a/Source/bindings/v8/WrapperTypeInfo.h b/Source/bindings/v8/WrapperTypeInfo.h
index 324e006d76bae91e9514c4ca01909dc5276a48f9..d77850a79dc46960533749c2b4b54ce1e77db710 100644
--- a/Source/bindings/v8/WrapperTypeInfo.h
+++ b/Source/bindings/v8/WrapperTypeInfo.h
@@ -181,11 +181,11 @@ namespace WebCore {
Dependent, Independent
};
- void configureWrapper(v8::Persistent<v8::Object>* wrapper, v8::Isolate* isolate) const
+ void configureWrapper(v8::Persistent<v8::Object>* wrapper) const
{
- wrapper->SetWrapperClassId(isolate, classId);
+ wrapper->SetWrapperClassId(classId);
if (lifetime == Independent)
- wrapper->MarkIndependent(isolate);
+ wrapper->MarkIndependent();
}
const uint16_t classId;
« no previous file with comments | « Source/bindings/v8/V8ValueCache.cpp ('k') | Source/bindings/v8/custom/V8InjectedScriptManager.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698