Match extension name to class name

This commit is contained in:
Kevin Sawicki 2016-12-08 13:01:21 -08:00
parent 736befe90f
commit 08b203fed1

View file

@ -13,8 +13,7 @@ NodeBindings* AtomIsolatedWorld::node_bindings_ = nullptr;
node::Environment* AtomIsolatedWorld::env_ = nullptr;
AtomIsolatedWorld::AtomIsolatedWorld(NodeBindings* node_bindings) :
v8::Extension("ElectronIsolatedWorldExtension",
"native function SetupNode();") {
v8::Extension("AtomIsolatedWorld", "native function SetupNode();") {
node_bindings_ = node_bindings;
env_ = nullptr;
}