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

Unified Diff: chrome/browser/resources/video_player/js/error_util.js

Issue 209853011: [VideoPlayer] Browser tests for new separated video player app (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Rebased Created 6 years, 9 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
Index: chrome/browser/resources/video_player/js/error_util.js
diff --git a/chrome/browser/resources/video_player/js/error_util.js b/chrome/browser/resources/video_player/js/error_util.js
new file mode 100644
index 0000000000000000000000000000000000000000..fedf9f534b66a2717cbbba9cb803e471c3698702
--- /dev/null
+++ b/chrome/browser/resources/video_player/js/error_util.js
@@ -0,0 +1,43 @@
+// Copyright 2014 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+'use strict';
+
+/**
+ * This variable is checked in SelectFileDialogExtensionBrowserTest.
+ * @type {number}
+ */
+window.JSErrorCount = 0;
+
+/**
+ * Counts uncaught exceptions.
+ */
+window.onerror = function() { window.JSErrorCount++; };
+
+/**
+ * Wraps the function to use it as a callback.
+ * This does:
+ * - Capture the stack trace in case of error.
+ * - Bind this object
+ *
+ * @param {Object} thisObject Object to be used as this.
+ * @return {function} Wapped function.
+ */
+Function.prototype.wrap = function(thisObject) {
+ var func = this;
+ var liveStack = (new Error('Stack trace before async call')).stack;
+ if (thisObject === undefined)
+ thisObject = null;
+
+ return function wrappedCallback() {
+ try {
+ return func.apply(thisObject, arguments);
+ } catch (e) {
+ console.error('Exception happens in callback.', liveStack);
+
+ window.JSErrorCount++;
+ throw e;
+ }
+ }
+};
« no previous file with comments | « chrome/browser/resources/video_player/js/background.js ('k') | chrome/browser/resources/video_player/js/test_util.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698