()
| 66 | } |
| 67 | |
| 68 | func (eventData *WebViewNavigatingEventData) TargetFrameName() string { |
| 69 | targetFrameName := eventData.targetFrameName |
| 70 | if targetFrameName != nil && targetFrameName.MustBSTR() != nil { |
| 71 | return win.BSTRToString(targetFrameName.MustBSTR()) |
| 72 | } |
| 73 | return "" |
| 74 | } |
| 75 | |
| 76 | func (eventData *WebViewNavigatingEventData) Canceled() bool { |
| 77 | cancel := eventData.cancel |
no outgoing calls
no test coverage detected