зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1403926 - Add pref for PerformanceNavigationTiming r=baku
MozReview-Commit-ID: 9f6fcCk8mh --HG-- extra : rebase_source : 0a1252a7cff2cfaec8f0ab5f8ffa755a0a8a4b5e
This commit is contained in:
Родитель
8bcf96f172
Коммит
3fba909015
|
@ -290,6 +290,7 @@ bool nsContentUtils::sIsCutCopyAllowed = true;
|
||||||
bool nsContentUtils::sIsFrameTimingPrefEnabled = false;
|
bool nsContentUtils::sIsFrameTimingPrefEnabled = false;
|
||||||
bool nsContentUtils::sIsPerformanceTimingEnabled = false;
|
bool nsContentUtils::sIsPerformanceTimingEnabled = false;
|
||||||
bool nsContentUtils::sIsResourceTimingEnabled = false;
|
bool nsContentUtils::sIsResourceTimingEnabled = false;
|
||||||
|
bool nsContentUtils::sIsPerformanceNavigationTimingEnabled = false;
|
||||||
bool nsContentUtils::sIsUserTimingLoggingEnabled = false;
|
bool nsContentUtils::sIsUserTimingLoggingEnabled = false;
|
||||||
bool nsContentUtils::sIsFormAutofillAutocompleteEnabled = false;
|
bool nsContentUtils::sIsFormAutofillAutocompleteEnabled = false;
|
||||||
bool nsContentUtils::sIsWebComponentsEnabled = false;
|
bool nsContentUtils::sIsWebComponentsEnabled = false;
|
||||||
|
@ -691,6 +692,9 @@ nsContentUtils::Init()
|
||||||
Preferences::AddBoolVarCache(&sIsResourceTimingEnabled,
|
Preferences::AddBoolVarCache(&sIsResourceTimingEnabled,
|
||||||
"dom.enable_resource_timing", true);
|
"dom.enable_resource_timing", true);
|
||||||
|
|
||||||
|
Preferences::AddBoolVarCache(&sIsPerformanceNavigationTimingEnabled,
|
||||||
|
"dom.enable_performance_navigation_timing", true);
|
||||||
|
|
||||||
Preferences::AddBoolVarCache(&sIsUserTimingLoggingEnabled,
|
Preferences::AddBoolVarCache(&sIsUserTimingLoggingEnabled,
|
||||||
"dom.performance.enable_user_timing_logging", false);
|
"dom.performance.enable_user_timing_logging", false);
|
||||||
|
|
||||||
|
|
|
@ -2273,6 +2273,14 @@ public:
|
||||||
return sIsResourceTimingEnabled;
|
return sIsResourceTimingEnabled;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Returns true if the performance timing APIs are enabled.
|
||||||
|
*/
|
||||||
|
static bool IsPerformanceNavigationTimingEnabled()
|
||||||
|
{
|
||||||
|
return sIsPerformanceNavigationTimingEnabled;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Returns true if notification should be sent for peformance timing events.
|
* Returns true if notification should be sent for peformance timing events.
|
||||||
*/
|
*/
|
||||||
|
@ -3340,6 +3348,7 @@ private:
|
||||||
static uint32_t sHandlingInputTimeout;
|
static uint32_t sHandlingInputTimeout;
|
||||||
static bool sIsPerformanceTimingEnabled;
|
static bool sIsPerformanceTimingEnabled;
|
||||||
static bool sIsResourceTimingEnabled;
|
static bool sIsResourceTimingEnabled;
|
||||||
|
static bool sIsPerformanceNavigationTimingEnabled;
|
||||||
static bool sIsUserTimingLoggingEnabled;
|
static bool sIsUserTimingLoggingEnabled;
|
||||||
static bool sIsFrameTimingPrefEnabled;
|
static bool sIsFrameTimingPrefEnabled;
|
||||||
static bool sIsFormAutofillAutocompleteEnabled;
|
static bool sIsFormAutofillAutocompleteEnabled;
|
||||||
|
|
|
@ -312,7 +312,7 @@ PerformanceMainThread::CreationTime() const
|
||||||
void
|
void
|
||||||
PerformanceMainThread::EnsureDocEntry()
|
PerformanceMainThread::EnsureDocEntry()
|
||||||
{
|
{
|
||||||
if (!mDocEntry) {
|
if (!mDocEntry && nsContentUtils::IsPerformanceNavigationTimingEnabled()) {
|
||||||
nsCOMPtr<nsIHttpChannel> httpChannel = do_QueryInterface(mChannel);
|
nsCOMPtr<nsIHttpChannel> httpChannel = do_QueryInterface(mChannel);
|
||||||
mDocEntry = new PerformanceNavigationTiming(Timing(), this,
|
mDocEntry = new PerformanceNavigationTiming(Timing(), this,
|
||||||
httpChannel);
|
httpChannel);
|
||||||
|
|
|
@ -163,6 +163,9 @@ pref("dom.enable_performance", true);
|
||||||
// Whether resource timing will be gathered and returned by performance.GetEntries*
|
// Whether resource timing will be gathered and returned by performance.GetEntries*
|
||||||
pref("dom.enable_resource_timing", true);
|
pref("dom.enable_resource_timing", true);
|
||||||
|
|
||||||
|
// Whether performance.GetEntries* will contain an entry for the active document
|
||||||
|
pref("dom.enable_performance_navigation_timing", true);
|
||||||
|
|
||||||
// Enable printing performance marks/measures to log
|
// Enable printing performance marks/measures to log
|
||||||
pref("dom.performance.enable_user_timing_logging", false);
|
pref("dom.performance.enable_user_timing_logging", false);
|
||||||
|
|
||||||
|
|
Загрузка…
Ссылка в новой задаче