Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Unified Diff: assets/js/FilterNotifier.jsm

Issue 6590816134889472: Noissue - Removed unused assets (Closed)
Patch Set: Created Oct. 14, 2014, 9:51 a.m.
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « assets/js/FilterListener.jsm ('k') | assets/js/FilterStorage.jsm » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: assets/js/FilterNotifier.jsm
diff --git a/assets/js/FilterNotifier.jsm b/assets/js/FilterNotifier.jsm
deleted file mode 100755
index e379c40d14a7e35eae6a6c1ab258da285bce1a37..0000000000000000000000000000000000000000
--- a/assets/js/FilterNotifier.jsm
+++ /dev/null
@@ -1,51 +0,0 @@
-/*
- * This file is part of Adblock Plus <http://adblockplus.org/>,
- * Copyright (C) 2006-2014 Eyeo GmbH
- *
- * Adblock Plus is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License version 3 as
- * published by the Free Software Foundation.
- *
- * Adblock Plus is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License
- * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>.
- */
-
-
-//
-// This file has been generated automatically from Adblock Plus source code
-//
-
-(function (_patchFunc1) {
- var listeners = [];
- var FilterNotifier = {
- addListener: function (listener) {
- if (listeners.indexOf(listener) >= 0)
- return ;
- listeners.push(listener);
- }
- ,
- removeListener: function (listener) {
- var index = listeners.indexOf(listener);
- if (index >= 0)
- listeners.splice(index, 1);
- }
- ,
- triggerListeners: function (action, item, param1, param2, param3) {
- for (var _loopIndex0 = 0;
- _loopIndex0 < listeners.length; ++ _loopIndex0) {
- var listener = listeners[_loopIndex0];
- listener(action, item, param1, param2, param3);
- }
- }
-
- };
- if (typeof _patchFunc1 != "undefined")
- eval("(" + _patchFunc1.toString() + ")()");
- window.FilterNotifier = FilterNotifier;
-}
-)(window.FilterNotifierPatch);
« no previous file with comments | « assets/js/FilterListener.jsm ('k') | assets/js/FilterStorage.jsm » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld