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

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

Issue 2636843003: Move most Feature Policy code into content/ (Closed)
Patch Set: Move usage of WebSecurityOrigin to content/child 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.
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_
raymes 2017/01/19 02:40:57 Could be good to add yourself as an owner of this
iclelland 2017/01/19 05:40:40 Good idea, thanks. Done. (Added you as well)
7
8 #include <map>
9 #include <memory>
10 #include <string>
11 #include <vector>
12
13 #include "content/common/content_export.h"
14 #include "content/common/feature_policy/feature_policy.h"
15 #include "third_party/WebKit/public/platform/WebFeaturePolicy.h"
16 #include "url/origin.h"
17
18 namespace content {
19
20 // Conversions between FeaturePolicyHeader and WebParsedFeaturePolicyHeader
21 FeaturePolicyHeader FeaturePolicyHeaderFromWeb(
22 const blink::WebParsedFeaturePolicyHeader& web_feature_policy_header);
23 blink::WebParsedFeaturePolicyHeader FeaturePolicyHeaderToWeb(
24 const FeaturePolicyHeader& feature_policy_header);
25
26 } // namespace content
27
28 #endif // CONTENT_CHILD_FEATURE_POLICY_FEATURE_POLICY_PLATFORM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698