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

Side by Side Diff: trunk/src/chrome/browser/resources/video_player/js/error_util.js

Issue 216793013: Revert 260245 "Revert 260198 "[VideoPlayer] Browser tests for ne..." (Closed) Base URL: svn://svn.chromium.org/chrome/
Patch Set: 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
OLDNEW
1 // Copyright 2014 The Chromium Authors. All rights reserved. 1 // Copyright 2014 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 'use strict'; 5 'use strict';
6 6
7 /** 7 /**
8 * This variable is checked in SelectFileDialogExtensionBrowserTest. 8 * This variable is checked in SelectFileDialogExtensionBrowserTest.
9 * @type {number} 9 * @type {number}
10 */ 10 */
(...skipping 23 matching lines...) Expand all
34 try { 34 try {
35 return func.apply(thisObject, arguments); 35 return func.apply(thisObject, arguments);
36 } catch (e) { 36 } catch (e) {
37 console.error('Exception happens in callback.', liveStack); 37 console.error('Exception happens in callback.', liveStack);
38 38
39 window.JSErrorCount++; 39 window.JSErrorCount++;
40 throw e; 40 throw e;
41 } 41 }
42 } 42 }
43 }; 43 };
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698