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-06-19 20:56:58 +00:00
|
|
|
#ifndef SHELL_COMMON_API_LOCKER_H_
|
|
|
|
#define SHELL_COMMON_API_LOCKER_H_
|
2015-08-07 11:34:00 +00:00
|
|
|
|
2016-05-23 01:59:39 +00:00
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
#include "base/macros.h"
|
2015-08-07 11:34:00 +00:00
|
|
|
#include "v8/include/v8.h"
|
|
|
|
|
|
|
|
namespace mate {
|
|
|
|
|
|
|
|
// Only lock when lockers are used in current thread.
|
|
|
|
class Locker {
|
|
|
|
public:
|
|
|
|
explicit Locker(v8::Isolate* isolate);
|
|
|
|
~Locker();
|
|
|
|
|
|
|
|
// Returns whether current process is browser process, currently we detect it
|
|
|
|
// by checking whether current has used V8 Lock, but it might be a bad idea.
|
|
|
|
static inline bool IsBrowserProcess() { return v8::Locker::IsActive(); }
|
|
|
|
|
|
|
|
private:
|
|
|
|
void* operator new(size_t size);
|
|
|
|
void operator delete(void*, size_t);
|
|
|
|
|
2016-05-23 01:59:39 +00:00
|
|
|
std::unique_ptr<v8::Locker> locker_;
|
2015-08-07 11:34:00 +00:00
|
|
|
|
|
|
|
DISALLOW_COPY_AND_ASSIGN(Locker);
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace mate
|
|
|
|
|
2019-06-19 20:56:58 +00:00
|
|
|
#endif // SHELL_COMMON_API_LOCKER_H_
|