| 566 | |
| 567 | |
| 568 | void |
| 569 | ThrustWindow::WebViewEmit( |
| 570 | int guest_instance_id, |
| 571 | const std::string type, |
| 572 | const base::DictionaryValue& params) |
| 573 | { |
| 574 | /* We emit to the MainFrame as this is the only one that is authorized to */ |
| 575 | /* have <webview> tags. */ |
| 576 | GetWebContents()->GetMainFrame()->Send( |
| 577 | new ThrustFrameMsg_WebViewEmit( |
| 578 | GetWebContents()->GetMainFrame()->GetRoutingID(), |
| 579 | guest_instance_id, type, params)); |
| 580 | } |
| 581 | |
| 582 | void |
| 583 | ThrustWindow::WebViewGuestSetAutoSize( |
no outgoing calls
no test coverage detected