electron/native_mate/locker.cc

18 lines
386 B
C++
Raw Normal View History

2014-08-10 11:05:25 +00:00
// Copyright 2014 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE.chromium file.
#include "native_mate/locker.h"
namespace mate {
Locker::Locker(v8::Isolate* isolate) {
if (v8::Locker::IsActive())
locker_.reset(new v8::Locker(isolate));
}
Locker::~Locker() {
}
} // namespace mate