| 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 #ifndef COMPONENTS_URL_MATCHER_URL_MATCHER_H_ | 5 #ifndef COMPONENTS_URL_MATCHER_URL_MATCHER_H_ |
| 6 #define COMPONENTS_URL_MATCHER_URL_MATCHER_H_ | 6 #define COMPONENTS_URL_MATCHER_URL_MATCHER_H_ |
| 7 | 7 |
| 8 #include <stddef.h> |
| 9 |
| 8 #include <set> | 10 #include <set> |
| 9 #include <vector> | 11 #include <vector> |
| 10 | 12 |
| 13 #include "base/macros.h" |
| 11 #include "base/memory/ref_counted.h" | 14 #include "base/memory/ref_counted.h" |
| 12 #include "base/memory/scoped_ptr.h" | 15 #include "base/memory/scoped_ptr.h" |
| 13 #include "components/url_matcher/regex_set_matcher.h" | 16 #include "components/url_matcher/regex_set_matcher.h" |
| 14 #include "components/url_matcher/substring_set_matcher.h" | 17 #include "components/url_matcher/substring_set_matcher.h" |
| 15 #include "components/url_matcher/url_matcher_export.h" | 18 #include "components/url_matcher/url_matcher_export.h" |
| 16 | 19 |
| 17 class GURL; | 20 class GURL; |
| 18 | 21 |
| 19 namespace base { | 22 namespace base { |
| 20 class DictionaryValue; | 23 class DictionaryValue; |
| (...skipping 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 420 RegexSetMatcher origin_and_path_regex_set_matcher_; | 423 RegexSetMatcher origin_and_path_regex_set_matcher_; |
| 421 std::set<const StringPattern*> registered_full_url_patterns_; | 424 std::set<const StringPattern*> registered_full_url_patterns_; |
| 422 std::set<const StringPattern*> registered_url_component_patterns_; | 425 std::set<const StringPattern*> registered_url_component_patterns_; |
| 423 | 426 |
| 424 DISALLOW_COPY_AND_ASSIGN(URLMatcher); | 427 DISALLOW_COPY_AND_ASSIGN(URLMatcher); |
| 425 }; | 428 }; |
| 426 | 429 |
| 427 } // namespace url_matcher | 430 } // namespace url_matcher |
| 428 | 431 |
| 429 #endif // COMPONENTS_URL_MATCHER_URL_MATCHER_H_ | 432 #endif // COMPONENTS_URL_MATCHER_URL_MATCHER_H_ |
| OLD | NEW |