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/url_matcher.h" | 5 #include "extensions/common/matcher/url_matcher.h" |
6 | 6 |
7 #include <algorithm> | 7 #include <algorithm> |
8 #include <iterator> | 8 #include <iterator> |
9 | 9 |
10 #include "base/logging.h" | 10 #include "base/logging.h" |
11 #include "content/public/common/url_constants.h" | 11 #include "content/public/common/url_constants.h" |
12 #include "googleurl/src/gurl.h" | 12 #include "googleurl/src/gurl.h" |
13 #include "googleurl/src/url_canon.h" | 13 #include "googleurl/src/url_canon.h" |
14 | 14 |
15 namespace extensions { | 15 namespace extensions { |
(...skipping 796 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
812 | 812 |
813 void URLMatcher::UpdateInternalDatastructures() { | 813 void URLMatcher::UpdateInternalDatastructures() { |
814 UpdateSubstringSetMatcher(false); | 814 UpdateSubstringSetMatcher(false); |
815 UpdateSubstringSetMatcher(true); | 815 UpdateSubstringSetMatcher(true); |
816 UpdateRegexSetMatcher(); | 816 UpdateRegexSetMatcher(); |
817 UpdateTriggers(); | 817 UpdateTriggers(); |
818 UpdateConditionFactory(); | 818 UpdateConditionFactory(); |
819 } | 819 } |
820 | 820 |
821 } // namespace extensions | 821 } // namespace extensions |
OLD | NEW |