-
-
Notifications
You must be signed in to change notification settings - Fork 2.9k
Expand file tree
/
Copy pathIRenderProcessHandler.cs
More file actions
36 lines (33 loc) · 1.49 KB
/
IRenderProcessHandler.cs
File metadata and controls
36 lines (33 loc) · 1.49 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
// Copyright © 2019 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
namespace CefSharp.RenderProcess
{
/// <summary>
/// Class used to implement render process callbacks.
/// The methods of this class will be called on the render process main thread (TID_RENDERER) unless otherwise indicated.
/// </summary>
public interface IRenderProcessHandler
{
/// <summary>
/// Called immediately after the V8 context for a frame has been created.
/// V8 handles can only be accessed from the thread on which they are created.
/// </summary>
/// <param name="browser">the browser</param>
/// <param name="frame">the frame</param>
/// <param name="context">the V8Context</param>
void OnContextCreated(IBrowser browser, IFrame frame, IV8Context context);
/// <summary>
/// Called immediately before the V8 context for a frame is released.
/// No references to the context should be kept after this method is called.
/// </summary>
/// <param name="browser">the browser</param>
/// <param name="frame">the frame</param>
/// <param name="context">the V8Context</param>
void OnContextReleased(IBrowser browser, IFrame frame, IV8Context context);
/// <summary>
/// Called after WebKit has been initialized.
/// </summary>
void OnWebKitInitialized();
}
}