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

Side by Side Diff: components/policy/core/common/schema.cc

Issue 1543423002: Switch to standard integer types in components/policy/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 12 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 unified diff | Download patch
« no previous file with comments | « components/policy/core/common/schema.h ('k') | components/policy/core/common/schema_map.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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
OLDNEW
« no previous file with comments | « components/policy/core/common/schema.h ('k') | components/policy/core/common/schema_map.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698