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

Side by Side Diff: chrome/browser/ui/webui/app_list/start_page_browsertest.js

Issue 255503006: webui: remove the precendent for silly, invalid end of jsdoc comments, e.g. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: whoops Created 6 years, 8 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/ui/webui/extensions/chromeos/kiosk_apps_browsertest.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 // Copyright 2013 The Chromium Authors. All rights reserved. 1 // Copyright 2013 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 /** 5 /**
6 * TestFixture for kiosk app settings WebUI testing. 6 * TestFixture for kiosk app settings WebUI testing.
7 * @extends {testing.Test} 7 * @extends {testing.Test}
8 * @constructor 8 * @constructor
9 **/ 9 */
10 function AppListStartPageWebUITest() {} 10 function AppListStartPageWebUITest() {}
11 11
12 /** 12 /**
13 * Mock of audioContext. 13 * Mock of audioContext.
14 * @constructor 14 * @constructor
15 */ 15 */
16 function mockAudioContext() { 16 function mockAudioContext() {
17 this.sampleRate = 44100; /* some dummy number */ 17 this.sampleRate = 44100; /* some dummy number */
18 } 18 }
19 19
(...skipping 185 matching lines...) Expand 10 before | Expand all | Expand 10 after
205 Mock4JS.verifyAllMocks(); 205 Mock4JS.verifyAllMocks();
206 Mock4JS.clearMocksToVerify(); 206 Mock4JS.clearMocksToVerify();
207 207
208 this.mockHandler.expects(once()).speechResult('test,true'); 208 this.mockHandler.expects(once()).speechResult('test,true');
209 this.mockHandler.expects(once()).setSpeechRecognitionState('READY'); 209 this.mockHandler.expects(once()).setSpeechRecognitionState('READY');
210 for (var i = 0; i < this.audioTrackMocks.length; ++i) { 210 for (var i = 0; i < this.audioTrackMocks.length; ++i) {
211 this.audioTrackMocks[i].expects(once()).stop(); 211 this.audioTrackMocks[i].expects(once()).stop();
212 } 212 }
213 this.sendSpeechResult('test', true); 213 this.sendSpeechResult('test', true);
214 }); 214 });
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/ui/webui/extensions/chromeos/kiosk_apps_browsertest.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698