Remove unused function (issue #1853)

This commit is contained in:
Marshall Greenblatt 2017-05-09 17:11:15 -04:00
parent 51e8c53f30
commit 1347fec298

View File

@ -72,17 +72,6 @@ bool GetPrivate(v8::Local<v8::Context> context,
.ToLocal(result);
}
void DeletePrivate(v8::Local<v8::Context> context,
v8::Local<v8::Object> obj,
const char* key) {
v8::Isolate* isolate = context->GetIsolate();
obj->DeletePrivate(context,
v8::Private::ForApi(
isolate,
v8::String::NewFromUtf8(isolate, key)))
.FromJust();
}
// Manages memory and state information associated with a single Isolate.
class CefV8IsolateManager {
public: