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

Side by Side Diff: ports/gdb/tests/debugger_test.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/gdb/tests/common.js ('k') | ports/gdb/tests/gdb_background_test.js » ('j') | 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 /* globals ASSERT_EQ, ASSERT_LE, ASSERT_GE, EXPECT_EQ, TEST_F, TEST */
8 /* globals chrometest, TestModuleTest, waitForExtraModuleCount */
9 /* globals waitIgnoringTerminal, ASSERT_TRUE, ASSERT_FALSE */
10
7 'use strict'; 11 'use strict';
8 12
9 function DebugExtensionTest() { 13 function DebugExtensionTest() {
10 this.debugExt = null; 14 this.debugExt = null;
11 this.moduleId = null; 15 this.moduleId = null;
12 this.change = null; 16 this.change = null;
13 } 17 }
14 DebugExtensionTest.prototype = new TestModuleTest(); 18 DebugExtensionTest.prototype = new TestModuleTest();
15 19
16 DebugExtensionTest.prototype.setUp = function() { 20 DebugExtensionTest.prototype.setUp = function() {
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 }).then(function(msg) { 207 }).then(function(msg) {
204 ASSERT_EQ('change', msg.name); 208 ASSERT_EQ('change', msg.name);
205 ASSERT_EQ('join', msg.cause); 209 ASSERT_EQ('join', msg.cause);
206 self.debugExt.postMessage({name: 'installCheck'}); 210 self.debugExt.postMessage({name: 'installCheck'});
207 return self.debugExt.wait(); 211 return self.debugExt.wait();
208 }).then(function(msg) { 212 }).then(function(msg) {
209 EXPECT_EQ('installCheckReply', msg.name, 'we are installed'); 213 EXPECT_EQ('installCheckReply', msg.name, 'we are installed');
210 self.debugExt.disconnect(); 214 self.debugExt.disconnect();
211 }); 215 });
212 }); 216 });
OLDNEW
« no previous file with comments | « ports/gdb/tests/common.js ('k') | ports/gdb/tests/gdb_background_test.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698