Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(889)

Unified Diff: remoting/webapp/toolbar.js

Issue 341733003: Fix double-title-bar bug. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/webapp/toolbar.js
diff --git a/remoting/webapp/toolbar.js b/remoting/webapp/toolbar.js
index f71bc3d011a363070f60e30ef87c8951108cbb35..23cbd3294f5648856f3f1b8759e7d4b7e711760a 100644
--- a/remoting/webapp/toolbar.js
+++ b/remoting/webapp/toolbar.js
@@ -48,7 +48,11 @@ remoting.Toolbar = function(toolbar) {
registerEventListener('new-connection', 'click',
function() {
- chrome.app.window.create('main.html', { 'width': 800, 'height': 600 });
+ chrome.app.window.create('main.html', {
+ 'width': 800,
+ 'height': 600,
+ 'frame': "none"
+ });
});
registerEventListener('send-ctrl-alt-del', 'click', remoting.sendCtrlAltDel);
registerEventListener('send-print-screen', 'click', remoting.sendPrintScreen);
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698