Bug 1411480 - Inline and remove pref_[SG]etInitPhase(). r=glandium.

They both have a single use.

MozReview-Commit-ID: 4Jj64B6NV0o

--HG--
extra : rebase_source : 51297caa052281544383bc76f120b4b62b686015
This commit is contained in:
Nicholas Nethercote 2017-10-25 10:22:38 +11:00
Родитель 49e302c18e
Коммит 5eeb08fa63
1 изменённых файлов: 3 добавлений и 15 удалений

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

@ -999,18 +999,6 @@ pref_SetValue(PrefValue* aExistingValue,
static pref_initPhase gPhase = START;
static void
pref_SetInitPhase(pref_initPhase aPhase)
{
gPhase = aPhase;
}
static pref_initPhase
pref_GetInitPhase()
{
return gPhase;
}
struct StringComparator
{
const char* mKey;
@ -4243,15 +4231,15 @@ Preferences::GetPreferences(InfallibleTArray<PrefSetting>* aPrefs)
#ifdef DEBUG
void
Preferences::SetInitPhase(pref_initPhase phase)
Preferences::SetInitPhase(pref_initPhase aPhase)
{
pref_SetInitPhase(phase);
gPhase = aPhase;
}
pref_initPhase
Preferences::InitPhase()
{
return pref_GetInitPhase();
return gPhase;
}
#endif