OLD | NEW |
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "chrome/common/extensions/matcher/substring_set_matcher.h" | 5 #include "extensions/common/matcher/substring_set_matcher.h" |
6 | 6 |
7 #include <queue> | 7 #include <queue> |
8 | 8 |
9 #include "base/logging.h" | 9 #include "base/logging.h" |
10 #include "base/stl_util.h" | 10 #include "base/stl_util.h" |
11 | 11 |
12 namespace extensions { | 12 namespace extensions { |
13 | 13 |
14 // | 14 // |
15 // SubstringSetMatcher | 15 // SubstringSetMatcher |
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
199 void SubstringSetMatcher::AhoCorasickNode::AddMatch(StringPattern::ID id) { | 199 void SubstringSetMatcher::AhoCorasickNode::AddMatch(StringPattern::ID id) { |
200 matches_.insert(id); | 200 matches_.insert(id); |
201 } | 201 } |
202 | 202 |
203 void SubstringSetMatcher::AhoCorasickNode::AddMatches( | 203 void SubstringSetMatcher::AhoCorasickNode::AddMatches( |
204 const SubstringSetMatcher::AhoCorasickNode::Matches& matches) { | 204 const SubstringSetMatcher::AhoCorasickNode::Matches& matches) { |
205 matches_.insert(matches.begin(), matches.end()); | 205 matches_.insert(matches.begin(), matches.end()); |
206 } | 206 } |
207 | 207 |
208 } // namespace extensions | 208 } // namespace extensions |
OLD | NEW |