| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 #include "components/policy/core/common/schema.h" | 5 #include "components/policy/core/common/schema.h" |
| 6 | 6 |
| 7 #include <stddef.h> |
| 8 |
| 7 #include <algorithm> | 9 #include <algorithm> |
| 8 #include <climits> | 10 #include <climits> |
| 9 #include <map> | 11 #include <map> |
| 10 #include <utility> | 12 #include <utility> |
| 11 | 13 |
| 12 #include "base/compiler_specific.h" | 14 #include "base/compiler_specific.h" |
| 13 #include "base/logging.h" | 15 #include "base/logging.h" |
| 16 #include "base/macros.h" |
| 14 #include "base/memory/scoped_ptr.h" | 17 #include "base/memory/scoped_ptr.h" |
| 15 #include "base/stl_util.h" | 18 #include "base/stl_util.h" |
| 16 #include "base/strings/stringprintf.h" | 19 #include "base/strings/stringprintf.h" |
| 17 #include "components/json_schema/json_schema_constants.h" | 20 #include "components/json_schema/json_schema_constants.h" |
| 18 #include "components/json_schema/json_schema_validator.h" | 21 #include "components/json_schema/json_schema_validator.h" |
| 19 #include "components/policy/core/common/schema_internal.h" | 22 #include "components/policy/core/common/schema_internal.h" |
| 20 #include "third_party/re2/src/re2/re2.h" | 23 #include "third_party/re2/src/re2/re2.h" |
| 21 | 24 |
| 22 namespace schema = json_schema_constants; | 25 namespace schema = json_schema_constants; |
| 23 | 26 |
| (...skipping 1075 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1099 return false; | 1102 return false; |
| 1100 } else { | 1103 } else { |
| 1101 int index = rnode->string_pattern_restriction.pattern_index; | 1104 int index = rnode->string_pattern_restriction.pattern_index; |
| 1102 DCHECK(index == rnode->string_pattern_restriction.pattern_index_backup); | 1105 DCHECK(index == rnode->string_pattern_restriction.pattern_index_backup); |
| 1103 re2::RE2* regex = storage_->CompileRegex(*storage_->string_enums(index)); | 1106 re2::RE2* regex = storage_->CompileRegex(*storage_->string_enums(index)); |
| 1104 return re2::RE2::PartialMatch(str, *regex); | 1107 return re2::RE2::PartialMatch(str, *regex); |
| 1105 } | 1108 } |
| 1106 } | 1109 } |
| 1107 | 1110 |
| 1108 } // namespace policy | 1111 } // namespace policy |
| OLD | NEW |