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

Unified Diff: ui/webui/resources/js/cr/ui/splitter.js

Issue 575313004: Compiling file_manager, part 2: remove all warnings not caused by Object.freeze()-like enums (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@I_file_manager
Patch Set: 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/webui/resources/js/cr/ui/splitter.js
diff --git a/ui/webui/resources/js/cr/ui/splitter.js b/ui/webui/resources/js/cr/ui/splitter.js
index c7b18ae4c9196e4794724c1130118f6d7964db15..b8ecbef07629994b5197506628ba5ea14d19640d 100644
--- a/ui/webui/resources/js/cr/ui/splitter.js
+++ b/ui/webui/resources/js/cr/ui/splitter.js
@@ -38,7 +38,7 @@ cr.define('cr.ui', function() {
* not take the page zoom into account so it returns the physical pixels
* instead of the logical pixel size.
* @param {!Document} doc The document to get the page zoom factor for.
- * @param {number} The zoom factor of the document.
+ * @param {number} doc The zoom factor of the document.
*/
function getZoomFactor(doc) {
var dummyElement = doc.createElement('div');
@@ -209,7 +209,7 @@ cr.define('cr.ui', function() {
/**
* Handles splitter moves. Updates width of the element being resized.
- * @param {number} changeX The change of splitter horizontal position.
+ * @param {number} deltaX The change of splitter horizontal position.
* @protected
*/
handleSplitterDragMove: function(deltaX) {

Powered by Google App Engine
This is Rietveld 408576698