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

Unified Diff: third_party/google_input_tools/third_party/closure_library/closure/goog/dom/classlist.js

Issue 1257313003: Update Google Input Tools (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Free up grd resources. Created 5 years, 5 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: third_party/google_input_tools/third_party/closure_library/closure/goog/dom/classlist.js
diff --git a/third_party/google_input_tools/third_party/closure_library/closure/goog/dom/classlist.js b/third_party/google_input_tools/third_party/closure_library/closure/goog/dom/classlist.js
index bca8e6bf2ec96afdbf1774176a95b3745fba84e7..dcbb7ed276ce431230c5a18c4efa954650a26d20 100644
--- a/third_party/google_input_tools/third_party/closure_library/closure/goog/dom/classlist.js
+++ b/third_party/google_input_tools/third_party/closure_library/closure/goog/dom/classlist.js
@@ -103,7 +103,7 @@ goog.dom.classlist.add = function(element, className) {
/**
* Convenience method to add a number of class names at once.
* @param {Element} element The element to which to add classes.
- * @param {goog.array.ArrayLike.<string>} classesToAdd An array-like object
+ * @param {goog.array.ArrayLike<string>} classesToAdd An array-like object
* containing a collection of class names to add to the element.
* This method may throw a DOM exception if classesToAdd contains invalid
* or empty class names.
@@ -167,7 +167,7 @@ goog.dom.classlist.remove = function(element, className) {
* repeatedly calling {@code goog.dom.classlist.remove} if you want to remove
* a large set of class names at once.
* @param {Element} element The element from which to remove classes.
- * @param {goog.array.ArrayLike.<string>} classesToRemove An array-like object
+ * @param {goog.array.ArrayLike<string>} classesToRemove An array-like object
* containing a collection of class names to remove from the element.
* This method may throw a DOM exception if classesToRemove contains invalid
* or empty class names.
@@ -213,7 +213,7 @@ goog.dom.classlist.enable = function(element, className, enabled) {
* method may throw a DOM exception for an invalid or empty class name if
* DOMTokenList is used.
* @param {!Element} element DOM node to add or remove the class on.
- * @param {goog.array.ArrayLike.<string>} classesToEnable An array-like object
+ * @param {goog.array.ArrayLike<string>} classesToEnable An array-like object
* containing a collection of class names to add or remove from the element.
* @param {boolean} enabled Whether to add or remove the classes (true adds,
* false removes).

Powered by Google App Engine
This is Rietveld 408576698