Add enable_osr build flag

This commit is contained in:
Aleksei Kuzmin 2017-06-26 11:13:05 +02:00
parent ab174f5e74
commit da36bdfcc4
8 changed files with 79 additions and 10 deletions

View file

@ -92,12 +92,14 @@ Window::Window(v8::Isolate* isolate, v8::Local<v8::Object> wrapper,
if (options.Get("transparent", &transparent))
web_preferences.Set("transparent", transparent);
#if defined(ENABLE_OSR)
// Offscreen windows are always created frameless.
bool offscreen;
if (web_preferences.Get("offscreen", &offscreen) && offscreen) {
auto window_options = const_cast<mate::Dictionary&>(options);
window_options.Set(options::kFrame, false);
}
#endif
// Creates the WebContents used by BrowserWindow.
web_contents = WebContents::Create(isolate, web_preferences);