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

Unified Diff: chrome/browser/resources/file_manager/common/js/error_util.js

Issue 247123002: Move Files.app files to ui/file_manager (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix the test failure on non-chromeos 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 side-by-side diff with in-line comments
Download patch
Index: chrome/browser/resources/file_manager/common/js/error_util.js
diff --git a/chrome/browser/resources/file_manager/common/js/error_util.js b/chrome/browser/resources/file_manager/common/js/error_util.js
deleted file mode 100644
index 7b3d2e664d4271c25dcbc9060032c6002eeaa79a..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/file_manager/common/js/error_util.js
+++ /dev/null
@@ -1,42 +0,0 @@
-// 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;
-
-/**
- * Count uncaught exceptions.
- */
-window.onerror = function() { window.JSErrorCount++; };
-
-// Overrides console.error() to count errors.
-/**
- * @param {...Object} var_args Message to be logged.
- */
-console.error = (function() {
- var orig = console.error;
- return function() {
- window.JSErrorCount++;
- return orig.apply(this, arguments);
- };
-})();
-
-// Overrides console.assert() to count errors.
-/**
- * @param {boolean} condition If false, log a message and stack trace.
- * @param {...Object} var_args Objects to.
- */
-console.assert = (function() {
- var orig = console.assert;
- return function(condition) {
- if (!condition)
- window.JSErrorCount++;
- return orig.apply(this, arguments);
- };
-})();

Powered by Google App Engine
This is Rietveld 408576698