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

Unified Diff: content/child/feature_policy/feature_policy_platform.cc

Issue 2738953002: Rename WebParsedFeaturePolicyHeader to WebParsedFeaturePolicy (Closed)
Patch Set: ParsedFeaturePolicyHeader => ParsedFeaturePolicy (content version) 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
« no previous file with comments | « content/child/feature_policy/feature_policy_platform.h ('k') | content/renderer/render_frame_impl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: content/child/feature_policy/feature_policy_platform.cc
diff --git a/content/child/feature_policy/feature_policy_platform.cc b/content/child/feature_policy/feature_policy_platform.cc
index 5c520f152dc494d0fc5331148116bb9f12b97091..1a1b81d13d501708b52c755fcbb5cce90449df6e 100644
--- a/content/child/feature_policy/feature_policy_platform.cc
+++ b/content/child/feature_policy/feature_policy_platform.cc
@@ -7,7 +7,7 @@
namespace content {
ParsedFeaturePolicyHeader FeaturePolicyHeaderFromWeb(
- const blink::WebParsedFeaturePolicyHeader& web_feature_policy_header) {
+ const blink::WebParsedFeaturePolicy& web_feature_policy_header) {
ParsedFeaturePolicyHeader result;
for (const blink::WebParsedFeaturePolicyDeclaration& web_declaration :
web_feature_policy_header) {
@@ -21,7 +21,7 @@ ParsedFeaturePolicyHeader FeaturePolicyHeaderFromWeb(
return result;
}
-blink::WebParsedFeaturePolicyHeader FeaturePolicyHeaderToWeb(
+blink::WebParsedFeaturePolicy FeaturePolicyHeaderToWeb(
const ParsedFeaturePolicyHeader& feature_policy_header) {
std::vector<blink::WebParsedFeaturePolicyDeclaration> result;
for (const ParsedFeaturePolicyDeclaration& declaration :
« no previous file with comments | « content/child/feature_policy/feature_policy_platform.h ('k') | content/renderer/render_frame_impl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698