Index: chrome/browser/resources/touch_ntp/tools/externs.js |
diff --git a/chrome/browser/resources/touch_ntp/tools/externs.js b/chrome/browser/resources/touch_ntp/tools/externs.js |
new file mode 100644 |
index 0000000000000000000000000000000000000000..8346171c2f0c4fd8dce98f31f900fa3753534b54 |
--- /dev/null |
+++ b/chrome/browser/resources/touch_ntp/tools/externs.js |
@@ -0,0 +1,26 @@ |
+// Copyright (c) 2011 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. |
+ |
+// externs.js contains variable declarations for the closure compiler |
+// This isn't actually used when running the code. |
+ |
+// JSCompiler doesn't know about this new Element property |
+Element.prototype.classList = {}; |
+/** @param {string} c */ |
+Element.prototype.classList.remove = function(c) {}; |
+/** @param {string} c */ |
+Element.prototype.classList.add = function(c) {}; |
+/** @param {string} c */ |
+Element.prototype.classList.contains = function(c) {}; |
+ |
+/** |
+ * @constructor |
+ * @extends {Event} |
+ */ |
+var CustomEvent = function() {}; |
+CustomEvent.prototype.initCustomEvent = |
+ function(eventType, bubbles, cancellable, detail) {}; |
+/** @type {TouchHandler.EventDetail} */ |
+CustomEvent.prototype.detail; |
+ |