remove mozscrolledareachanged from content.js

This commit is contained in:
Benjamin Stover 2010-09-07 10:13:10 -07:00
Родитель 69aeaea180
Коммит 79e3bb5c1f
1 изменённых файлов: 0 добавлений и 38 удалений

Просмотреть файл

@ -221,15 +221,6 @@ function Coalescer() {
}
Coalescer.prototype = {
start: function start() {
},
stop: function stop() {
},
notify: function notify() {
},
handleEvent: function handleEvent(aEvent) {
switch (aEvent.type) {
case "MozApplicationManifest": {
@ -242,34 +233,6 @@ Coalescer.prototype = {
break;
}
}
},
/** Next scroll size change event will invalidate all previous content. See constructor. */
_emptyPage: function _emptyPage() {
this._incremental = false;
},
sizeChange: function sizeChange(scrollOffset, x, y, width, height) {
// Adjust width and height from the incoming event properties so that we
// ignore changes to width and height contributed by growth in page
// quadrants other than x > 0 && y > 0.
x = x + scrollOffset.x;
y = y + scrollOffset.y;
this._pendingSizeChange = {
width: width + (x < 0 ? x : 0),
height: height + (y < 0 ? y : 0)
};
if (!this._timer.isPending())
this.flush();
},
flush: function flush() {
let sizeChange = this._pendingSizeChange;
if (sizeChange) {
sendAsyncMessage("Browser:MozScrolledAreaChanged", { width: sizeChange.width, height: sizeChange.height });
this._pendingSizeChange = null;
}
}
};
@ -367,7 +330,6 @@ function Content() {
addMessageListener("Browser:ZoomToPoint", this);
this._coalescer = new Coalescer();
addEventListener("MozScrolledAreaChanged", this._coalescer, false);
addEventListener("MozApplicationManifest", this._coalescer, false);
this._progressController = new ProgressController(this);