electron/shell/common/gin_helper/locker.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

31 lines
721 B
C
Raw Normal View History

// 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.
#ifndef ELECTRON_SHELL_COMMON_GIN_HELPER_LOCKER_H_
#define ELECTRON_SHELL_COMMON_GIN_HELPER_LOCKER_H_
2016-05-23 01:59:39 +00:00
#include <memory>
#include "v8/include/v8.h"
namespace gin_helper {
// Only lock when lockers are used in current thread.
class Locker {
public:
explicit Locker(v8::Isolate* isolate);
~Locker();
// disable copy
Locker(const Locker&) = delete;
Locker& operator=(const Locker&) = delete;
private:
const std::unique_ptr<v8::Locker> locker_;
};
} // namespace gin_helper
#endif // ELECTRON_SHELL_COMMON_GIN_HELPER_LOCKER_H_