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

Side by Side Diff: ports/xorg-server/background.js

Issue 1415743013: Run jshint over all JavaScript files (Closed) Base URL: https://chromium.googlesource.com/external/naclports.git@repo_conf
Patch Set: Created 5 years, 1 month 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 unified diff | Download patch
« no previous file with comments | « ports/vim/vim.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (c) 2014 The Native Client Authors. All rights reserved. 2 * Copyright (c) 2014 The Native Client Authors. All rights reserved.
3 * Use of this source code is governed by a BSD-style license that can be 3 * Use of this source code is governed by a BSD-style license that can be
4 * found in the LICENSE file. 4 * found in the LICENSE file.
5 */ 5 */
6 6
7 'use strict';
8
7 function onLaunched(launchData) { 9 function onLaunched(launchData) {
8 chrome.app.window.create('Xsdl.html', { 10 chrome.app.window.create('Xsdl.html', {
9 width: 1024, 11 width: 1024,
10 height: 768, 12 height: 768,
11 minWidth: 1024, 13 minWidth: 1024,
12 minHeight: 768, 14 minHeight: 768,
13 maxWidth: 1024, 15 maxWidth: 1024,
14 maxHeight: 768, 16 maxHeight: 768,
15 id: 'Xsdl', 17 id: 'Xsdl',
16 }); 18 });
17 } 19 }
18 20
19 chrome.app.runtime.onLaunched.addListener(onLaunched); 21 chrome.app.runtime.onLaunched.addListener(onLaunched);
OLDNEW
« no previous file with comments | « ports/vim/vim.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698