зеркало из https://github.com/mozilla/gecko-dev.git
Bug 944537 - Don't send showMessage boolean with Tabs.START event (r=mfinkle)
This commit is contained in:
Родитель
61200554e7
Коммит
698ab8b35d
|
@ -447,7 +447,7 @@ public class Tabs implements GeckoEventListener {
|
||||||
if ((state & GeckoAppShell.WPL_STATE_START) != 0) {
|
if ((state & GeckoAppShell.WPL_STATE_START) != 0) {
|
||||||
boolean showProgress = message.getBoolean("showProgress");
|
boolean showProgress = message.getBoolean("showProgress");
|
||||||
tab.handleDocumentStart(showProgress, message.getString("uri"));
|
tab.handleDocumentStart(showProgress, message.getString("uri"));
|
||||||
notifyListeners(tab, Tabs.TabEvents.START, showProgress);
|
notifyListeners(tab, Tabs.TabEvents.START);
|
||||||
} else if ((state & GeckoAppShell.WPL_STATE_STOP) != 0) {
|
} else if ((state & GeckoAppShell.WPL_STATE_STOP) != 0) {
|
||||||
tab.handleDocumentStop(message.getBoolean("success"));
|
tab.handleDocumentStop(message.getBoolean("success"));
|
||||||
notifyListeners(tab, Tabs.TabEvents.STOP);
|
notifyListeners(tab, Tabs.TabEvents.STOP);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче