Bug 1475006 - Remove mAutoProfilerLabel from AutoEntryScript in non-MOZ_GECKO_PROFILER builds r=mstange

MozReview-Commit-ID: 66mZK4q2ATK

--HG--
extra : rebase_source : ae72897b128731b8d721a3db230009a605b1560a
This commit is contained in:
Nazım Can Altınova 2018-07-12 11:01:08 +02:00
Родитель 23af908b2c
Коммит 7dd60d07b7
2 изменённых файлов: 4 добавлений и 0 удалений

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

@ -652,8 +652,10 @@ AutoEntryScript::AutoEntryScript(nsIGlobalObject* aGlobalObject,
// This relies on us having a cx() because the AutoJSAPI constructor already
// ran.
, mCallerOverride(cx())
#ifdef MOZ_GECKO_PROFILER
, mAutoProfilerLabel("AutoEntryScript", aReason, __LINE__,
js::ProfilingStackFrame::Category::JS)
#endif
{
MOZ_ASSERT(aGlobalObject);

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

@ -380,7 +380,9 @@ private:
Maybe<DocshellEntryMonitor> mDocShellEntryMonitor;
JS::AutoHideScriptedCaller mCallerOverride;
#ifdef MOZ_GECKO_PROFILER
AutoProfilerLabel mAutoProfilerLabel;
#endif
};
/*