| 42 | int parent_id_; |
| 43 | |
| 44 | DevToolsLifeSpan(int parent_id) |
| 45 | : CefRefCount(this) |
| 46 | , parent_id_(parent_id) |
| 47 | { |
| 48 | cef_bind_method(DevToolsLifeSpan, on_after_created); |
| 49 | cef_bind_method(DevToolsLifeSpan, on_before_close); |
| 50 | } |
| 51 | |
| 52 | void _on_after_created(cef_browser_t* browser) |
| 53 | { |
nothing calls this directly
no outgoing calls
no test coverage detected