| 754 | } |
| 755 | |
| 756 | void |
| 757 | ThrustWindow::WebViewGuestExecuteScript( |
| 758 | int guest_instance_id, |
| 759 | const std::string& script) |
| 760 | { |
| 761 | WebViewGuest* guest = |
| 762 | WebViewGuest::FromWebContents( |
| 763 | ThrustShellBrowserClient::Get()->ThrustSessionForBrowserContext( |
| 764 | GetWebContents()->GetBrowserContext())-> |
| 765 | GetGuestByInstanceID(guest_instance_id, |
| 766 | GetWebContents()->GetRenderProcessHost()->GetID())); |
| 767 | |
| 768 | guest->ExecuteScript(script); |
| 769 | } |
| 770 | |
| 771 | void |
| 772 | ThrustWindow::WebViewGuestOpenDevTools( |
nothing calls this directly
no test coverage detected