Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(463)

Unified Diff: third_party/WebKit/Source/core/inspector/InspectorResourceContentLoader.cpp

Issue 2780533002: Use Referrer-Policy headers for CSS stylesheets (Closed)
Patch Set: updates Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/Source/core/inspector/InspectorResourceContentLoader.cpp
diff --git a/third_party/WebKit/Source/core/inspector/InspectorResourceContentLoader.cpp b/third_party/WebKit/Source/core/inspector/InspectorResourceContentLoader.cpp
index 0428a059b1e25cce4f88d9ef673c8d1b365d1081..686f644d38f15961f3eca9e6018744bfa82bb189 100644
--- a/third_party/WebKit/Source/core/inspector/InspectorResourceContentLoader.cpp
+++ b/third_party/WebKit/Source/core/inspector/InspectorResourceContentLoader.cpp
@@ -52,6 +52,7 @@ class InspectorResourceContentLoader::ResourceClient final
void setCSSStyleSheet(const String&,
const KURL&,
+ ReferrerPolicy,
const String&,
const CSSStyleSheetResource*) override;
void notifyFinished(Resource*) override;
@@ -77,6 +78,7 @@ void InspectorResourceContentLoader::ResourceClient::resourceFinished(
void InspectorResourceContentLoader::ResourceClient::setCSSStyleSheet(
const String&,
const KURL& url,
+ ReferrerPolicy,
const String&,
const CSSStyleSheetResource* resource) {
resourceFinished(const_cast<CSSStyleSheetResource*>(resource));

Powered by Google App Engine
This is Rietveld 408576698