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 #ifndef CHROME_COMMON_EXTENSIONS_MATCHER_URL_MATCHER_FACTORY_H_ | 5 #ifndef EXTENSIONS_COMMON_MATCHER_URL_MATCHER_FACTORY_H_ |
6 #define CHROME_COMMON_EXTENSIONS_MATCHER_URL_MATCHER_FACTORY_H_ | 6 #define EXTENSIONS_COMMON_MATCHER_URL_MATCHER_FACTORY_H_ |
7 | 7 |
8 #include <string> | 8 #include <string> |
9 | 9 |
10 #include "base/basictypes.h" | 10 #include "base/basictypes.h" |
11 #include "chrome/common/extensions/matcher/url_matcher.h" | 11 #include "extensions/common/matcher/url_matcher.h" |
12 | 12 |
13 namespace base { | 13 namespace base { |
14 class DictionaryValue; | 14 class DictionaryValue; |
15 class Value; | 15 class Value; |
16 } | 16 } |
17 | 17 |
18 namespace extensions { | 18 namespace extensions { |
19 | 19 |
20 class URLMatcherFactory { | 20 class URLMatcherFactory { |
21 public: | 21 public: |
(...skipping 30 matching lines...) Expand all Loading... |
52 const base::Value* value, std::string* error); | 52 const base::Value* value, std::string* error); |
53 | 53 |
54 static scoped_ptr<URLMatcherPortFilter> CreateURLMatcherPorts( | 54 static scoped_ptr<URLMatcherPortFilter> CreateURLMatcherPorts( |
55 const base::Value* value, std::string* error); | 55 const base::Value* value, std::string* error); |
56 | 56 |
57 DISALLOW_IMPLICIT_CONSTRUCTORS(URLMatcherFactory); | 57 DISALLOW_IMPLICIT_CONSTRUCTORS(URLMatcherFactory); |
58 }; | 58 }; |
59 | 59 |
60 } // namespace extensions | 60 } // namespace extensions |
61 | 61 |
62 #endif // CHROME_COMMON_EXTENSIONS_MATCHER_URL_MATCHER_FACTORY_H_ | 62 #endif // EXTENSIONS_COMMON_MATCHER_URL_MATCHER_FACTORY_H_ |
OLD | NEW |