From 623837584d1f482e84d7704e72b0619c16dc0956 Mon Sep 17 00:00:00 2001 From: jamiewalch Date: Wed, 25 Feb 2015 14:31:34 -0800 Subject: [PATCH] Use a framed window on Mac. Since Mac does not support transparency, having a window with no title bar is inconvenient because it can't be dragged aside to access other windows. This CL adds a standard window frame on Mac. BUG=b/19370387 Review URL: https://codereview.chromium.org/952823003 Cr-Commit-Position: refs/heads/master@{#318128} --- remoting/webapp/app_remoting/js/ar_background.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/remoting/webapp/app_remoting/js/ar_background.js b/remoting/webapp/app_remoting/js/ar_background.js index b70736bd131e32..908f3f3b1a4a95 100644 --- a/remoting/webapp/app_remoting/js/ar_background.js +++ b/remoting/webapp/app_remoting/js/ar_background.js @@ -28,7 +28,7 @@ function createWindow(opt_launchData) { var windowAttributes = { resizable: false, - frame: 'none', + frame: remoting.platformIsMac() ? 'chrome' : 'none', bounds: { width: typed_screen.availWidth, height: typed_screen.availHeight