mirror of
https://github.com/electron/electron.git
synced 2026-01-09 15:38:08 -05:00
chore: use v8::Local<>, not v8::Handle<> (#43019)
v8::Handle is an alias for v8::Local that "is kept around for historical reasons" and is disabled when V8_IMMINENT_DEPRECATION_WARNING is defined
This commit is contained in:
@@ -34,9 +34,9 @@ class ElectronSandboxedRendererClient : public RendererClientBase {
|
||||
v8::Local<v8::Context> context,
|
||||
content::RenderFrame* render_frame);
|
||||
// electron::RendererClientBase:
|
||||
void DidCreateScriptContext(v8::Handle<v8::Context> context,
|
||||
void DidCreateScriptContext(v8::Local<v8::Context> context,
|
||||
content::RenderFrame* render_frame) override;
|
||||
void WillReleaseScriptContext(v8::Handle<v8::Context> context,
|
||||
void WillReleaseScriptContext(v8::Local<v8::Context> context,
|
||||
content::RenderFrame* render_frame) override;
|
||||
// content::ContentRendererClient:
|
||||
void RenderFrameCreated(content::RenderFrame*) override;
|
||||
|
||||
Reference in New Issue
Block a user