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
|
|
|
|
2023-04-20 00:27:02 +00:00
|
|
|
#include "shell/common/process_util.h"
|
|
|
|
|
2019-10-31 07:56:00 +00:00
|
|
|
namespace gin_helper {
|
2015-08-07 11:34:00 +00:00
|
|
|
|
2023-09-12 23:53:20 +00:00
|
|
|
Locker::Locker(v8::Isolate* isolate)
|
|
|
|
: locker_{electron::IsBrowserProcess() ? new v8::Locker{isolate}
|
|
|
|
: nullptr} {}
|
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
|