Chromium Code Reviews| Index: chrome/common/search_urls.h |
| diff --git a/chrome/common/search_urls.h b/chrome/common/search_urls.h |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..6bb78e37d6d652e99f1f67a7bd54e861f33c0d46 |
| --- /dev/null |
| +++ b/chrome/common/search_urls.h |
| @@ -0,0 +1,13 @@ |
| +#ifndef SEARCH_URLS_H_ |
| +#define SEARCH_URLS_H_ |
| + |
| +class GURL; |
| + |
| +namespace search { |
| + |
| +// Returns true if |my_url| matches |other_url|. |
| +bool MatchesOriginAndPath(const GURL& my_url, const GURL& other_url); |
| + |
| +} // namespace search |
| + |
| +#endif // SEARCH_URLS_H_ |