| OLD | NEW | 
|   1 /* |   1 /* | 
|   2  * This file is part of Adblock Plus <http://adblockplus.org/>, |   2  * This file is part of Adblock Plus <http://adblockplus.org/>, | 
|   3  * Copyright (C) 2006-2013 Eyeo GmbH |   3  * Copyright (C) 2006-2013 Eyeo GmbH | 
|   4  * |   4  * | 
|   5  * Adblock Plus is free software: you can redistribute it and/or modify |   5  * Adblock Plus is free software: you can redistribute it and/or modify | 
|   6  * it under the terms of the GNU General Public License version 3 as |   6  * it under the terms of the GNU General Public License version 3 as | 
|   7  * published by the Free Software Foundation. |   7  * published by the Free Software Foundation. | 
|   8  * |   8  * | 
|   9  * Adblock Plus is distributed in the hope that it will be useful, |   9  * Adblock Plus is distributed in the hope that it will be useful, | 
|  10  * but WITHOUT ANY WARRANTY; without even the implied warranty of |  10  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
| (...skipping 69 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  80  |  80  | 
|  81     if (frame.url != details.url) |  81     if (frame.url != details.url) | 
|  82       return; |  82       return; | 
|  83  |  83  | 
|  84     for (var i = 0; i < details.responseHeaders.length; i++) |  84     for (var i = 0; i < details.responseHeaders.length; i++) | 
|  85     { |  85     { | 
|  86       var header = details.responseHeaders[i]; |  86       var header = details.responseHeaders[i]; | 
|  87       if (header.name.toLowerCase() == "x-adblock-key" && header.value) |  87       if (header.name.toLowerCase() == "x-adblock-key" && header.value) | 
|  88         processKeyException(header.value, tab, frame); |  88         processKeyException(header.value, tab, frame); | 
|  89     } |  89     } | 
 |  90  | 
 |  91     var notificationToShow = Notification.getNextToShow(details.url); | 
 |  92     if (notificationToShow) | 
 |  93       showNotification(notificationToShow); | 
|  90   } |  94   } | 
|  91  |  95  | 
|  92   chrome.webRequest.onHeadersReceived.addListener(onHeadersReceived, {urls: ["<a
    ll_urls>"]}, ["responseHeaders"]); |  96   chrome.webRequest.onHeadersReceived.addListener(onHeadersReceived, {urls: ["<a
    ll_urls>"]}, ["responseHeaders"]); | 
|  93 } |  97 } | 
| OLD | NEW |