Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 #include "content/common/feature_policy/feature_policy.h" | |
| 6 | |
| 7 namespace content { | |
| 8 | |
| 9 ParsedFeaturePolicyDeclaration::ParsedFeaturePolicyDeclaration() | |
| 10 : matches_all_origins(false) {} | |
| 11 | |
| 12 ParsedFeaturePolicyDeclaration::ParsedFeaturePolicyDeclaration( | |
| 13 std::string feature_name, | |
| 14 bool matches_all_origins, | |
| 15 std::vector<url::Origin> origins) | |
| 16 : feature_name(feature_name), | |
| 17 matches_all_origins(matches_all_origins), | |
| 18 origins(origins) {} | |
| 19 | |
| 20 ParsedFeaturePolicyDeclaration::ParsedFeaturePolicyDeclaration( | |
| 21 const ParsedFeaturePolicyDeclaration& rhs) = default; | |
| 22 | |
| 23 ParsedFeaturePolicyDeclaration::~ParsedFeaturePolicyDeclaration() {} | |
| 24 | |
| 25 } // namespace content | |
| OLD | NEW |