admin
2020-06-10 a610f2ab6e543d2cb78c1ef212ac6a74ddc067d9
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
// 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);
    }
}