зеркало из https://github.com/mozilla/gecko-dev.git
Bug 929849 - Delay profiler initialization in Shumway. r=till
This commit is contained in:
Родитель
3fd8db572a
Коммит
983c838713
|
@ -49,8 +49,6 @@ let Svc = {};
|
|||
XPCOMUtils.defineLazyServiceGetter(Svc, 'mime',
|
||||
'@mozilla.org/mime;1', 'nsIMIMEService');
|
||||
|
||||
let profiler = Cc["@mozilla.org/tools/profiler;1"].getService(Ci.nsIProfiler);
|
||||
|
||||
function getBoolPref(pref, def) {
|
||||
try {
|
||||
return Services.prefs.getBoolPref(pref);
|
||||
|
@ -222,7 +220,10 @@ ChromeActions.prototype = {
|
|||
});
|
||||
},
|
||||
addProfilerMarker: function (marker) {
|
||||
profiler.AddMarker(marker);
|
||||
if ('nsIProfiler' in Ci) {
|
||||
let profiler = Cc["@mozilla.org/tools/profiler;1"].getService(Ci.nsIProfiler);
|
||||
profiler.AddMarker(marker);
|
||||
}
|
||||
},
|
||||
getPluginParams: function getPluginParams() {
|
||||
return JSON.stringify({
|
||||
|
|
|
@ -1 +1 @@
|
|||
0.7.501
|
||||
0.7.502
|
||||
|
|
Загрузка…
Ссылка в новой задаче