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

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

Issue 8775024: Fix NTP not to slide with mouse (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Don't include tweak to enable Xinput2 Created 9 years, 1 month 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/ntp4/tools/externs.js
diff --git a/chrome/browser/resources/ntp4/tools/externs.js b/chrome/browser/resources/ntp4/tools/externs.js
deleted file mode 100644
index f86d21ae9de361e1a1e7ba2522138b5de3979794..0000000000000000000000000000000000000000
--- a/chrome/browser/resources/ntp4/tools/externs.js
+++ /dev/null
@@ -1,40 +0,0 @@
-// 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;
-
-
-/** @param {string} s
- * @return {string}
- */
-var url = function(s) {};
-
-/**
- * @param {string} type
- * @param {EventListener|function(Event):(boolean|undefined)} listener
- * @param {boolean=} opt_useCapture
- * @return {undefined}
- * @suppress {checkTypes}
- */
-Window.prototype.addEventListener = function(type, listener, opt_useCapture) {};
« no previous file with comments | « chrome/browser/resources/ntp4/tools/check.sh ('k') | chrome/browser/resources/shared/js/cr/ui/card_slider.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698