mirror of
https://github.com/electron/electron.git
synced 2026-01-14 01:48:14 -05:00
* chore: bump chromium in DEPS to 143.0.7482.0 * chore: bump chromium in DEPS to 143.0.7483.0 * [CodeHealth] Remove RenderWidgetHostImpl::is_hidden() | https://chromium-review.googlesource.com/c/chromium/src/+/7050059 * chore: update mas_avoid_private_macos_api_usage.patch.patch [graphite] Refactor backpressure fences on Mac to avoid GLContext | https://chromium-review.googlesource.com/c/chromium/src/+/7047167 * chore: update disable_compositor_recycling.patch no manual changes; patch applied with fuzz [CodeHealth] Remove RenderWidgetHostImpl::is_hidden() | https://chromium-review.googlesource.com/c/chromium/src/+/7050059 * chore: update allow_disabling_blink_scheduler_throttling_per_renderview.patch [CodeHealth] Remove RenderWidgetHostImpl::is_hidden() | https://chromium-review.googlesource.com/c/chromium/src/+/7050059 * chore: update feat_allow_code_cache_in_custom_schemes.patch [url] Change Add*Scheme*(...) functions to accept std::string_view | https://chromium-review.googlesource.com/c/chromium/src/+/7046471 * chore: e patches all * [memory] Replace bool success with MemoryDumpRequestOutcome enum. | https://chromium-review.googlesource.com/c/chromium/src/+/7029767 * [CodeHealth] Remove RenderWidgetHostImpl::is_hidden() | https://chromium-review.googlesource.com/c/chromium/src/+/7050059 --------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: Charles Kerr <charles@charleskerr.com>
90 lines
2.8 KiB
C++
90 lines
2.8 KiB
C++
// Copyright (c) 2013 GitHub, Inc.
|
|
// Use of this source code is governed by the MIT license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#ifndef ELECTRON_SHELL_COMMON_API_ELECTRON_BINDINGS_H_
|
|
#define ELECTRON_SHELL_COMMON_API_ELECTRON_BINDINGS_H_
|
|
|
|
#include <list>
|
|
#include <memory>
|
|
|
|
#include "base/memory/scoped_refptr.h"
|
|
#include "base/process/process_metrics.h"
|
|
#include "services/resource_coordinator/public/mojom/memory_instrumentation/memory_instrumentation.mojom-forward.h"
|
|
#include "shell/common/node_bindings.h"
|
|
#include "uv.h" // NOLINT(build/include_directory)
|
|
|
|
namespace base {
|
|
class FilePath;
|
|
}
|
|
|
|
namespace gin_helper {
|
|
class Dictionary;
|
|
template <typename T>
|
|
class Promise;
|
|
} // namespace gin_helper
|
|
|
|
namespace memory_instrumentation {
|
|
class GlobalMemoryDump;
|
|
}
|
|
|
|
namespace node {
|
|
class Environment;
|
|
}
|
|
|
|
namespace electron {
|
|
|
|
class ElectronBindings {
|
|
public:
|
|
explicit ElectronBindings(uv_loop_t* loop);
|
|
virtual ~ElectronBindings();
|
|
|
|
// disable copy
|
|
ElectronBindings(const ElectronBindings&) = delete;
|
|
ElectronBindings& operator=(const ElectronBindings&) = delete;
|
|
|
|
// Add process._linkedBinding function, which behaves like process.binding
|
|
// but load native code from Electron instead.
|
|
void BindTo(v8::Isolate* isolate, v8::Local<v8::Object> process);
|
|
|
|
// Should be called when a node::Environment has been destroyed.
|
|
void EnvironmentDestroyed(node::Environment* env);
|
|
|
|
static void BindProcess(v8::Isolate* isolate,
|
|
gin_helper::Dictionary* process,
|
|
base::ProcessMetrics* metrics);
|
|
|
|
static void Crash();
|
|
|
|
static void DidReceiveMemoryDump(
|
|
v8::Global<v8::Context> context,
|
|
gin_helper::Promise<gin_helper::Dictionary> promise,
|
|
base::ProcessId target_pid,
|
|
memory_instrumentation::mojom::RequestOutcome outcome,
|
|
std::unique_ptr<memory_instrumentation::GlobalMemoryDump> dump);
|
|
|
|
private:
|
|
static void Hang();
|
|
static v8::Local<v8::Value> GetHeapStatistics(v8::Isolate* isolate);
|
|
static v8::Local<v8::Value> GetCreationTime(v8::Isolate* isolate);
|
|
static v8::Local<v8::Value> GetSystemMemoryInfo(v8::Isolate* isolate);
|
|
static v8::Local<v8::Promise> GetProcessMemoryInfo(v8::Isolate* isolate);
|
|
static v8::Local<v8::Value> GetBlinkMemoryInfo(v8::Isolate* isolate);
|
|
static v8::Local<v8::Value> GetCPUUsage(base::ProcessMetrics* metrics,
|
|
v8::Isolate* isolate);
|
|
static bool TakeHeapSnapshot(v8::Isolate* isolate,
|
|
const base::FilePath& file_path);
|
|
|
|
void ActivateUVLoop(v8::Isolate* isolate);
|
|
|
|
static void OnCallNextTick(uv_async_t* handle);
|
|
|
|
UvHandle<uv_async_t> call_next_tick_async_;
|
|
std::list<node::Environment*> pending_next_ticks_;
|
|
std::unique_ptr<base::ProcessMetrics> metrics_;
|
|
};
|
|
|
|
} // namespace electron
|
|
|
|
#endif // ELECTRON_SHELL_COMMON_API_ELECTRON_BINDINGS_H_
|