зеркало из https://github.com/mozilla/gecko-dev.git
Bug 616134 - Content processes should annotate URLs for crashes. r=felipe.
This commit is contained in:
Родитель
e9868c3934
Коммит
256e96f15d
|
@ -11,6 +11,12 @@ Cu.import('resource://gre/modules/XPCOMUtils.jsm');
|
||||||
Cu.import("resource://gre/modules/RemoteAddonsChild.jsm");
|
Cu.import("resource://gre/modules/RemoteAddonsChild.jsm");
|
||||||
Cu.import("resource://gre/modules/Timer.jsm");
|
Cu.import("resource://gre/modules/Timer.jsm");
|
||||||
|
|
||||||
|
#ifdef MOZ_CRASHREPORTER
|
||||||
|
XPCOMUtils.defineLazyServiceGetter(this, "CrashReporter",
|
||||||
|
"@mozilla.org/xre/app-info;1",
|
||||||
|
"nsICrashReporter");
|
||||||
|
#endif
|
||||||
|
|
||||||
let FocusSyncHandler = {
|
let FocusSyncHandler = {
|
||||||
init: function() {
|
init: function() {
|
||||||
sendAsyncMessage("SetSyncHandler", {}, {handler: this});
|
sendAsyncMessage("SetSyncHandler", {}, {handler: this});
|
||||||
|
@ -178,6 +184,10 @@ let WebNavigation = {
|
||||||
},
|
},
|
||||||
|
|
||||||
loadURI: function(uri, flags) {
|
loadURI: function(uri, flags) {
|
||||||
|
#ifdef MOZ_CRASHREPORTER
|
||||||
|
if (CrashReporter.enabled)
|
||||||
|
CrashReporter.annotateCrashReport("URL", uri);
|
||||||
|
#endif
|
||||||
this._webNavigation.loadURI(uri, flags, null, null, null);
|
this._webNavigation.loadURI(uri, flags, null, null, null);
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
|
@ -27,7 +27,7 @@ toolkit.jar:
|
||||||
content/global/directionDetector.html
|
content/global/directionDetector.html
|
||||||
content/global/plugins.html
|
content/global/plugins.html
|
||||||
content/global/plugins.css
|
content/global/plugins.css
|
||||||
content/global/browser-child.js (browser-child.js)
|
* content/global/browser-child.js (browser-child.js)
|
||||||
content/global/browser-content.js (browser-content.js)
|
content/global/browser-content.js (browser-content.js)
|
||||||
*+ content/global/buildconfig.html (buildconfig.html)
|
*+ content/global/buildconfig.html (buildconfig.html)
|
||||||
* content/global/contentAreaUtils.js (contentAreaUtils.js)
|
* content/global/contentAreaUtils.js (contentAreaUtils.js)
|
||||||
|
|
Загрузка…
Ссылка в новой задаче