| 34 | private: |
| 35 | friend class ACT_TYPE<ACT_NAME, ACT_EXEC_CTX>; |
| 36 | static Response Execute_(const ACT_EXEC_CTX& ctx, SessionContext& stx, Params&& in) |
| 37 | { |
| 38 | stx.remotePid = in.cefRenderPid; |
| 39 | const Response res{ .kernelPid = GetCurrentProcessId() }; |
| 40 | pmlog_info(std::format("Kernel open action for cef={} krn={}", in.cefRenderPid, res.kernelPid)); |
| 41 | return res; |
| 42 | } |
| 43 | }; |
| 44 | |
| 45 | ACTION_REG(); |
nothing calls this directly
no outgoing calls
no test coverage detected