()
| 171 | } |
| 172 | |
| 173 | func (c *ClientImpl) makeBackendOpts() *rpctypes.VDomBackendOpts { |
| 174 | appMeta := c.GetAppMeta() |
| 175 | return &rpctypes.VDomBackendOpts{ |
| 176 | Title: appMeta.Title, |
| 177 | ShortDesc: appMeta.ShortDesc, |
| 178 | GlobalKeyboardEvents: c.GlobalEventHandler != nil, |
| 179 | FaviconPath: c.getFaviconPath(), |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | func (c *ClientImpl) runMainE() error { |
| 184 | if c.AppInitFn != nil { |
no test coverage detected