Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 WebFeaturePolicy_h | |
| 6 #define WebFeaturePolicy_h | |
| 7 | |
| 8 #include "WebString.h" | |
| 9 #include "WebVector.h" | |
| 10 | |
| 11 namespace blink { | |
| 12 | |
| 13 struct WebFeaturePolicy { | |
|
raymes
2016/11/22 05:16:33
When we make the FeaturePolicy class publicly avai
raymes
2016/11/22 05:17:12
On 2016/11/22 05:16:33, raymes wrote:
> When we ma
iclelland
2016/11/22 21:02:05
I was working on that, which probably overlapped a
iclelland
2016/11/23 20:20:28
But we probably can't use that in the browser proc
| |
| 14 struct ParsedWhitelist { | |
| 15 ParsedWhitelist() : matchesAllOrigins(false) {} | |
| 16 WebString featureName; | |
| 17 bool matchesAllOrigins; | |
| 18 WebVector<WebString> origins; | |
| 19 }; | |
| 20 }; | |
| 21 | |
| 22 } // namespace blink | |
| 23 | |
| 24 #endif // WebFeaturePolicy_h | |
| OLD | NEW |