Skip to content

Commit

Permalink
Https upgrade telemetry should default to not initialized
Browse files Browse the repository at this point in the history
  • Loading branch information
daijro committed Nov 19, 2024
1 parent 9eab67e commit 50bf1a0
Showing 1 changed file with 5 additions and 8 deletions.
13 changes: 5 additions & 8 deletions patches/playwright/0-playwright-updated.patch
Original file line number Diff line number Diff line change
Expand Up @@ -2302,21 +2302,18 @@ index 283e991f92..7ffc4ae0c3 100644
+
} // namespace mozilla::net
diff --git a/netwerk/base/LoadInfo.h b/netwerk/base/LoadInfo.h
index 0598c9703f..96e0eb1c04 100644
index 0598c9703f..10e1cdab3e 100644
--- a/netwerk/base/LoadInfo.h
+++ b/netwerk/base/LoadInfo.h
@@ -414,8 +414,10 @@ class LoadInfo final : public nsILoadInfo {
bool mHasInjectedCookieForCookieBannerHandling = false;
bool mWasSchemelessInput = false;
@@ -417,6 +417,8 @@ class LoadInfo final : public nsILoadInfo {
nsILoadInfo::HTTPSUpgradeTelemetryType mHttpsUpgradeTelemetry =
nsILoadInfo::NOT_INITIALIZED;

+ uint64_t mJugglerLoadIdentifier = 0;
+
nsILoadInfo::HTTPSUpgradeTelemetryType mHttpsUpgradeTelemetry =
- nsILoadInfo::NOT_INITIALIZED;
+ nsILoadInfo::NO_UPGRADE;

bool mIsNewWindowTarget = false;
bool mSkipHTTPSUpgrade = false;
};
diff --git a/netwerk/base/TRRLoadInfo.cpp b/netwerk/base/TRRLoadInfo.cpp
index d1aad5d3a3..8b3640504c 100644
--- a/netwerk/base/TRRLoadInfo.cpp
Expand Down

0 comments on commit 50bf1a0

Please sign in to comment.