summaryrefslogtreecommitdiff
path: root/chromium/gpu/ipc/service/context_url.cc
diff options
context:
space:
mode:
Diffstat (limited to 'chromium/gpu/ipc/service/context_url.cc')
-rw-r--r--chromium/gpu/ipc/service/context_url.cc7
1 files changed, 4 insertions, 3 deletions
diff --git a/chromium/gpu/ipc/service/context_url.cc b/chromium/gpu/ipc/service/context_url.cc
index a02b18257f5..4fd16df8412 100644
--- a/chromium/gpu/ipc/service/context_url.cc
+++ b/chromium/gpu/ipc/service/context_url.cc
@@ -20,9 +20,10 @@ void ContextUrl::SetActiveUrl(const gpu::ContextUrl& active_url) {
last_url_hash = active_url.hash();
- // Note that the url is intentionally excluded from webview crash dumps
- // using a whitelist for privacy reasons. See kWebViewCrashKeyWhiteList.
- static crash_reporter::CrashKeyString<1024> crash_key("url-chunk");
+ // Note that the url is intentionally excluded from WebView and WebLayer
+ // crash dumps using an allowlist for privacy reasons. See
+ // kWebViewCrashKeyAllowList and kWebLayerCrashKeyAllowList.
+ static crash_reporter::CrashKeyString<1024> crash_key("gpu-url-chunk");
crash_key.Set(active_url.url().possibly_invalid_spec());
}