pull/2/head
gorhill 9 years ago
parent 1f4ff9c809
commit 1c05281183

@ -32,6 +32,12 @@
/******************************************************************************/
// Useful links
//
// https://developer.mozilla.org/en-US/docs/Mozilla/Tech/XPCOM/Reference/Interface
/******************************************************************************/
const {classes: Cc, interfaces: Ci, utils: Cu} = Components;
const {Services} = Cu.import('resource://gre/modules/Services.jsm', null);
@ -1052,6 +1058,7 @@ var httpObserver = {
},
register: function() {
// https://developer.mozilla.org/en/docs/Observer_Notifications#HTTP_requests
Services.obs.addObserver(this, 'http-on-opening-request', true);
Services.obs.addObserver(this, 'http-on-examine-response', true);
Services.obs.addObserver(this, 'http-on-examine-cached-response', true);
@ -1157,8 +1164,6 @@ var httpObserver = {
return false;
},
// https://developer.mozilla.org/en/docs/Observer_Notifications#HTTP_requests
//
observe: function(channel, topic) {
if ( channel instanceof Ci.nsIHttpChannel === false ) {
return;

@ -372,6 +372,8 @@ vAPI.tabs.onNavigation = function(details) {
return;
}
//console.log('vAPI.tabs.onNavigation: %s %s %o', details.url, details.transitionType, details.transitionQualifiers);
µm.tabContextManager.commit(tabId, details.url);
µm.bindTabToPageStats(tabId, 'commit');
};

Loading…
Cancel
Save