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

Side by Side Diff: content/child/feature_policy/feature_policy_platform.h

Issue 2654873004: Move content-side Feature Policy code into content/{common,child}/feature_policy (Closed)
Patch Set: Clean up includes Created 3 years, 11 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2016 The Chromium Authors. All rights reserved.
raymes 2017/01/25 01:00:42 nit: 2017
iclelland 2017/01/25 03:28:38 Done.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
4
5 #ifndef CONTENT_CHILD_FEATURE_POLICY_FEATURE_POLICY_PLATFORM_H_
6 #define CONTENT_CHILD_FEATURE_POLICY_FEATURE_POLICY_PLATFORM_H_
7
8 #include "content/common/feature_policy/feature_policy.h"
9 #include "third_party/WebKit/public/platform/WebFeaturePolicy.h"
10
11 namespace content {
12
13 // Conversions between ParsedFeaturePolicyHeader and
14 // WebParsedFeaturePolicyHeader
15 ParsedFeaturePolicyHeader FeaturePolicyHeaderFromWeb(
16 const blink::WebParsedFeaturePolicyHeader& web_feature_policy_header);
17 blink::WebParsedFeaturePolicyHeader FeaturePolicyHeaderToWeb(
18 const ParsedFeaturePolicyHeader& feature_policy_header);
19
20 } // namespace content
21
22 #endif // CONTENT_CHILD_FEATURE_POLICY_FEATURE_POLICY_PLATFORM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698