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

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

Issue 2636843003: Move most Feature Policy code into content/ (Closed)
Patch Set: Addressing review comments 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « content/child/feature_policy/OWNERS ('k') | content/child/feature_policy/feature_policy_platform.cc » ('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.h
diff --git a/content/child/feature_policy/feature_policy_platform.h b/content/child/feature_policy/feature_policy_platform.h
new file mode 100644
index 0000000000000000000000000000000000000000..15577e34c6e97573f1694005dec20194c9931264
--- /dev/null
+++ b/content/child/feature_policy/feature_policy_platform.h
@@ -0,0 +1,28 @@
+// Copyright 2016 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#ifndef CONTENT_CHILD_FEATURE_POLICY_FEATURE_POLICY_PLATFORM_H_
+#define CONTENT_CHILD_FEATURE_POLICY_FEATURE_POLICY_PLATFORM_H_
+
+#include <map>
+#include <memory>
+#include <string>
+#include <vector>
+
+#include "content/common/content_export.h"
+#include "content/common/feature_policy/feature_policy.h"
+#include "third_party/WebKit/public/platform/WebFeaturePolicy.h"
+#include "url/origin.h"
+
+namespace content {
+
+// Conversions between FeaturePolicyHeader and WebParsedFeaturePolicyHeader
+FeaturePolicyHeader FeaturePolicyHeaderFromWeb(
+ const blink::WebParsedFeaturePolicyHeader& web_feature_policy_header);
+blink::WebParsedFeaturePolicyHeader FeaturePolicyHeaderToWeb(
+ const FeaturePolicyHeader& feature_policy_header);
+
+} // namespace content
+
+#endif // CONTENT_CHILD_FEATURE_POLICY_FEATURE_POLICY_PLATFORM_H_
« no previous file with comments | « content/child/feature_policy/OWNERS ('k') | content/child/feature_policy/feature_policy_platform.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698