2015-08-07 19:34:00 +08: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 13:46:59 -07:00
|
|
|
#include "shell/common/api/locker.h"
|
2015-08-07 19:34:00 +08:00
|
|
|
|
2019-09-16 18:12:00 -04:00
|
|
|
#include <memory>
|
|
|
|
|
2015-08-07 19:34:00 +08:00
|
|
|
namespace mate {
|
|
|
|
|
|
|
|
Locker::Locker(v8::Isolate* isolate) {
|
|
|
|
if (IsBrowserProcess())
|
2019-09-16 18:12:00 -04:00
|
|
|
locker_ = std::make_unique<v8::Locker>(isolate);
|
2015-08-07 19:34:00 +08:00
|
|
|
}
|
|
|
|
|
2019-09-16 18:12:00 -04:00
|
|
|
Locker::~Locker() = default;
|
2015-08-07 19:34:00 +08:00
|
|
|
|
|
|
|
} // namespace mate
|