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

Side by Side Diff: extensions/common/matcher/substring_set_matcher.cc

Issue 12092096: Move c/c/extensions/matcher/ to top level extension dir (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: TOT Created 7 years, 10 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
OLDNEW
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
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
OLDNEW
« no previous file with comments | « extensions/common/matcher/substring_set_matcher.h ('k') | extensions/common/matcher/substring_set_matcher_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698