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

Unified Diff: chrome/browser/resources/touch_ntp/tools/externs.js

Issue 6661024: Use a specialized new tab page in TOUCH_UI builds (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: Created 9 years, 9 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/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;
+

Powered by Google App Engine
This is Rietveld 408576698