2015-08-07 11:34:00 +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.
|
|
|
|
|
2019-06-19 20:46:59 +00:00
|
|
|
#include "shell/common/api/locker.h"
|
2015-08-07 11:34:00 +00:00
|
|
|
|
|
|
|
namespace mate {
|
|
|
|
|
|
|
|
Locker::Locker(v8::Isolate* isolate) {
|
|
|
|
if (IsBrowserProcess())
|
|
|
|
locker_.reset(new v8::Locker(isolate));
|
|
|
|
}
|
|
|
|
|
2018-04-18 01:55:30 +00:00
|
|
|
Locker::~Locker() {}
|
2015-08-07 11:34:00 +00:00
|
|
|
|
|
|
|
} // namespace mate
|