| OLD | NEW |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | 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 | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef WebFeaturePolicy_h | 5 #ifndef WebFeaturePolicy_h |
| 6 #define WebFeaturePolicy_h | 6 #define WebFeaturePolicy_h |
| 7 | 7 |
| 8 #include "WebSecurityOrigin.h" | 8 #include "WebSecurityOrigin.h" |
| 9 #include "WebString.h" | 9 #include "WebString.h" |
| 10 #include "WebVector.h" | 10 #include "WebVector.h" |
| 11 | 11 |
| 12 namespace blink { | 12 namespace blink { |
| 13 | 13 |
| 14 struct WebFeaturePolicy { | 14 struct WebParsedFeaturePolicyDeclaration { |
| 15 struct ParsedWhitelist { | 15 WebParsedFeaturePolicyDeclaration() : matchesAllOrigins(false) {} |
| 16 ParsedWhitelist() : matchesAllOrigins(false) {} | 16 WebString featureName; |
| 17 WebString featureName; | 17 bool matchesAllOrigins; |
| 18 bool matchesAllOrigins; | 18 WebVector<WebSecurityOrigin> origins; |
| 19 WebVector<WebSecurityOrigin> origins; | |
| 20 }; | |
| 21 }; | 19 }; |
| 22 | 20 |
| 23 using WebParsedFeaturePolicy = WebVector<WebFeaturePolicy::ParsedWhitelist>; | 21 // Used in Blink code to represent parsed headers. Used for IPC between renderer |
| 22 // and browser. |
| 23 using WebParsedFeaturePolicyHeader = |
| 24 WebVector<WebParsedFeaturePolicyDeclaration>; |
| 24 | 25 |
| 25 } // namespace blink | 26 } // namespace blink |
| 26 | 27 |
| 27 #endif // WebFeaturePolicy_h | 28 #endif // WebFeaturePolicy_h |
| OLD | NEW |