зеркало из https://github.com/mozilla/gecko-dev.git
Bug 663040 - Stub webNavigation for remote browsers, moved from mobile to toolkit. r=mfinkle,mossop
This commit is contained in:
Родитель
702ac0a471
Коммит
6fedbfdf0e
|
@ -211,9 +211,9 @@
|
|||
case "Content:LocationChange":
|
||||
try {
|
||||
let locationURI = this._browser._ios.newURI(json.location, null, null);
|
||||
this._browser._webNavigation._currentURI = locationURI;
|
||||
this._browser._webNavigation.canGoBack = json.canGoBack;
|
||||
this._browser._webNavigation.canGoForward = json.canGoForward;
|
||||
this._browser.webNavigation._currentURI = locationURI;
|
||||
this._browser.webNavigation.canGoBack = json.canGoBack;
|
||||
this._browser.webNavigation.canGoForward = json.canGoForward;
|
||||
this._browser._charset = json.charset;
|
||||
} catch(e) {}
|
||||
|
||||
|
@ -284,7 +284,7 @@
|
|||
.getService(Components.interfaces.nsICertOverrideService);
|
||||
|
||||
// Check whether this site is a security exception.
|
||||
let currentURI = this._browser._webNavigation._currentURI;
|
||||
let currentURI = this._browser.webNavigation._currentURI;
|
||||
result.isException = !!this._overrideService.hasMatchingOverride(currentURI.asciiHost, currentURI.port, cert, {}, {});
|
||||
}
|
||||
|
||||
|
@ -649,74 +649,8 @@
|
|||
onget="return this._contentTitle;"
|
||||
readonly="true"/>
|
||||
|
||||
<field name="_webNavigation"><![CDATA[
|
||||
({
|
||||
LOAD_FLAGS_MASK: 65535,
|
||||
LOAD_FLAGS_NONE: 0,
|
||||
LOAD_FLAGS_IS_REFRESH: 16,
|
||||
LOAD_FLAGS_IS_LINK: 32,
|
||||
LOAD_FLAGS_BYPASS_HISTORY: 64,
|
||||
LOAD_FLAGS_REPLACE_HISTORY: 128,
|
||||
LOAD_FLAGS_BYPASS_CACHE: 256,
|
||||
LOAD_FLAGS_BYPASS_PROXY: 512,
|
||||
LOAD_FLAGS_CHARSET_CHANGE: 1024,
|
||||
LOAD_FLAGS_STOP_CONTENT: 2048,
|
||||
LOAD_FLAGS_FROM_EXTERNAL: 4096,
|
||||
LOAD_FLAGS_ALLOW_THIRD_PARTY_FIXUP: 8192,
|
||||
LOAD_FLAGS_FIRST_LOAD: 16384,
|
||||
LOAD_FLAGS_ALLOW_POPUPS: 32768,
|
||||
LOAD_FLAGS_BYPASS_CLASSIFIER: 65536,
|
||||
LOAD_FLAGS_FORCE_ALLOW_COOKIES: 131072,
|
||||
|
||||
STOP_NETWORK: 1,
|
||||
STOP_CONTENT: 2,
|
||||
STOP_ALL: 3,
|
||||
|
||||
canGoBack: false,
|
||||
canGoForward: false,
|
||||
goBack: function() { this._sendMessage("WebNavigation:GoBack", {}); },
|
||||
goForward: function() { this._sendMessage("WebNavigation:GoForward", {}); },
|
||||
gotoIndex: function(aIndex) { this._sendMessage("WebNavigation:GotoIndex", {index: aIndex}); },
|
||||
loadURI: function(aURI, aLoadFlags, aReferrer, aPostData, aHeaders) {
|
||||
this._browser.userTypedValue = aURI;
|
||||
this._browser._contentTitle = "";
|
||||
this._sendMessage("WebNavigation:LoadURI", {uri: aURI, flags: aLoadFlags});
|
||||
},
|
||||
reload: function(aReloadFlags) { this._sendMessage("WebNavigation:Reload", {flags: aReloadFlags}); },
|
||||
stop: function(aStopFlags) { this._sendMessage("WebNavigation:Stop", {flags: aStopFlags}); },
|
||||
get document() { Components.utils.reportError("contentDocument is not available"); return null; },
|
||||
get currentURI() {
|
||||
if (!this._currentURI)
|
||||
this._currentURI = this._browser._ios.newURI("about:blank", null, null);
|
||||
|
||||
return this._currentURI;
|
||||
},
|
||||
set currentURI(aURI) { this.loadURI(aURI.spec, null, null, null); },
|
||||
referringURI: null,
|
||||
get sessionHistory() { return null; },
|
||||
set sessionHistory(aValue) { },
|
||||
|
||||
_currentURI: null,
|
||||
_browser: this,
|
||||
_sendMessage: function(aMessage, aData) {
|
||||
try {
|
||||
this._browser.messageManager.sendAsyncMessage(aMessage, aData);
|
||||
}
|
||||
catch (e) {
|
||||
Components.utils.reportError(e);
|
||||
}
|
||||
},
|
||||
|
||||
QueryInterface: function(aIID) {
|
||||
if (aIID.equals(Components.interfaces.nsIWebNavigation) || aIID.equals(Components.interfaces.nsISupports))
|
||||
return this;
|
||||
throw Components.results.NS_NOINTERFACE;
|
||||
}
|
||||
})
|
||||
]]></field>
|
||||
|
||||
<property name="webNavigation"
|
||||
onget="return this._webNavigation;"
|
||||
onget="return this._remoteWebNavigation;"
|
||||
readonly="true"/>
|
||||
|
||||
<property name="contentWindow"
|
||||
|
|
|
@ -261,15 +261,92 @@
|
|||
onget="return this._docShell || (this._docShell = this.boxObject.QueryInterface(Components.interfaces.nsIContainerBoxObject).docShell);"
|
||||
readonly="true"/>
|
||||
|
||||
<property name="isRemoteBrowser"
|
||||
onget="return (this.getAttribute('remote') == 'true');"
|
||||
readonly="true"/>
|
||||
|
||||
<property name="messageManager"
|
||||
onget="return this.QueryInterface(Components.interfaces.nsIFrameLoaderOwner).frameLoader.messageManager;"
|
||||
readonly="true"/>
|
||||
|
||||
<field name="_webNavigation">null</field>
|
||||
|
||||
<field name="_remoteWebNavigation"><![CDATA[
|
||||
({
|
||||
LOAD_FLAGS_MASK: 65535,
|
||||
LOAD_FLAGS_NONE: 0,
|
||||
LOAD_FLAGS_IS_REFRESH: 16,
|
||||
LOAD_FLAGS_IS_LINK: 32,
|
||||
LOAD_FLAGS_BYPASS_HISTORY: 64,
|
||||
LOAD_FLAGS_REPLACE_HISTORY: 128,
|
||||
LOAD_FLAGS_BYPASS_CACHE: 256,
|
||||
LOAD_FLAGS_BYPASS_PROXY: 512,
|
||||
LOAD_FLAGS_CHARSET_CHANGE: 1024,
|
||||
LOAD_FLAGS_STOP_CONTENT: 2048,
|
||||
LOAD_FLAGS_FROM_EXTERNAL: 4096,
|
||||
LOAD_FLAGS_ALLOW_THIRD_PARTY_FIXUP: 8192,
|
||||
LOAD_FLAGS_FIRST_LOAD: 16384,
|
||||
LOAD_FLAGS_ALLOW_POPUPS: 32768,
|
||||
LOAD_FLAGS_BYPASS_CLASSIFIER: 65536,
|
||||
LOAD_FLAGS_FORCE_ALLOW_COOKIES: 131072,
|
||||
|
||||
STOP_NETWORK: 1,
|
||||
STOP_CONTENT: 2,
|
||||
STOP_ALL: 3,
|
||||
|
||||
canGoBack: false,
|
||||
canGoForward: false,
|
||||
goBack: function() { this._sendMessage("WebNavigation:GoBack", {}); },
|
||||
goForward: function() { this._sendMessage("WebNavigation:GoForward", {}); },
|
||||
gotoIndex: function(aIndex) { this._sendMessage("WebNavigation:GotoIndex", {index: aIndex}); },
|
||||
loadURI: function(aURI, aLoadFlags, aReferrer, aPostData, aHeaders) {
|
||||
this._browser.userTypedValue = aURI;
|
||||
this._browser._contentTitle = "";
|
||||
this._sendMessage("WebNavigation:LoadURI", {uri: aURI, flags: aLoadFlags});
|
||||
},
|
||||
reload: function(aReloadFlags) { this._sendMessage("WebNavigation:Reload", {flags: aReloadFlags}); },
|
||||
stop: function(aStopFlags) { this._sendMessage("WebNavigation:Stop", {flags: aStopFlags}); },
|
||||
get document() { Components.utils.reportError("contentDocument is not available"); return null; },
|
||||
get currentURI() {
|
||||
if (!this._currentURI)
|
||||
this._currentURI = Components.classes["@mozilla.org/network/io-service;1"].getService(Components.interfaces.nsIIOService).newURI("about:blank", null, null);
|
||||
|
||||
return this._currentURI;
|
||||
},
|
||||
set currentURI(aURI) { this.loadURI(aURI.spec, null, null, null); },
|
||||
referringURI: null,
|
||||
get sessionHistory() { return null; },
|
||||
set sessionHistory(aValue) { },
|
||||
|
||||
_currentURI: null,
|
||||
_browser: this,
|
||||
_sendMessage: function(aMessage, aData) {
|
||||
try {
|
||||
this._browser.messageManager.sendAsyncMessage(aMessage, aData);
|
||||
}
|
||||
catch (e) {
|
||||
Components.utils.reportError(e);
|
||||
}
|
||||
},
|
||||
|
||||
QueryInterface: function(aIID) {
|
||||
if (aIID.equals(Components.interfaces.nsIWebNavigation) || aIID.equals(Components.interfaces.nsISupports))
|
||||
return this;
|
||||
throw Components.results.NS_NOINTERFACE;
|
||||
}
|
||||
})
|
||||
]]></field>
|
||||
|
||||
<property name="webNavigation"
|
||||
onget="return this._webNavigation || (this._webNavigation = this.docShell.QueryInterface(Components.interfaces.nsIWebNavigation));"
|
||||
readonly="true"/>
|
||||
readonly="true">
|
||||
<getter>
|
||||
<![CDATA[
|
||||
if (!this._webNavigation)
|
||||
this._webNavigation = this.isRemoteBrowser ? this._remoteWebNavigation : this.docShell.QueryInterface(Components.interfaces.nsIWebNavigation);
|
||||
return this._webNavigation;
|
||||
]]>
|
||||
</getter>
|
||||
</property>
|
||||
|
||||
<field name="_webBrowserFind">null</field>
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче