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

Unified Diff: ui/file_manager/file_manager/common/js/async_util.js

Issue 571453002: Correct indentation, JSDoc, etc... to comply with closure linter. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 6 years, 3 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: ui/file_manager/file_manager/common/js/async_util.js
diff --git a/ui/file_manager/file_manager/common/js/async_util.js b/ui/file_manager/file_manager/common/js/async_util.js
index 745bee6a55258d6d553b228ef1fdced978764350..f2bf6f813d91a7c6467fe3ecfb79e9cc261451b5 100644
--- a/ui/file_manager/file_manager/common/js/async_util.js
+++ b/ui/file_manager/file_manager/common/js/async_util.js
@@ -161,7 +161,9 @@ AsyncUtil.Queue = function() {
AsyncUtil.ConcurrentQueue.call(this, 1);
};
-AsyncUtil.Queue.prototype.__proto__ = AsyncUtil.ConcurrentQueue.prototype;
+AsyncUtil.Queue.prototype = {
+ __proto__: AsyncUtil.ConcurrentQueue.prototype
+};
/**
* Creates a class for executing several asynchronous closures in a group in
« no previous file with comments | « ui/file_manager/file_manager/background/js/volume_manager.js ('k') | ui/file_manager/file_manager/common/js/util.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698