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-10-31 07:56:00 +00:00
|
|
|
#include "shell/common/gin_helper/locker.h"
|
2015-08-07 11:34:00 +00:00
|
|
|
|
2019-10-31 07:56:00 +00:00
|
|
|
namespace gin_helper {
|
2015-08-07 11:34:00 +00:00
|
|
|
|
|
|
|
Locker::Locker(v8::Isolate* isolate) {
|
|
|
|
if (IsBrowserProcess())
|
2019-09-16 22:12:00 +00:00
|
|
|
locker_ = std::make_unique<v8::Locker>(isolate);
|
2015-08-07 11:34:00 +00:00
|
|
|
}
|
|
|
|
|
2019-09-16 22:12:00 +00:00
|
|
|
Locker::~Locker() = default;
|
2015-08-07 11:34:00 +00:00
|
|
|
|
2019-10-31 07:56:00 +00:00
|
|
|
} // namespace gin_helper
|