2b316f3843
* refactor: clang-tidy modernize-use-nullptr * refactor: clang-tidy modernize-use-equals-default * refactor: clang-tidy modernize-make-unique * refactor: omit nullptr arg from unique_ptr.reset() As per comment by @miniak
18 lines
422 B
C++
18 lines
422 B
C++
// 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 "shell/common/api/locker.h"
|
|
|
|
#include <memory>
|
|
|
|
namespace mate {
|
|
|
|
Locker::Locker(v8::Isolate* isolate) {
|
|
if (IsBrowserProcess())
|
|
locker_ = std::make_unique<v8::Locker>(isolate);
|
|
}
|
|
|
|
Locker::~Locker() = default;
|
|
|
|
} // namespace mate
|