| 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..c4bbacd2db84718a4381636386d7c55e14564a2b
|
| --- /dev/null
|
| +++ b/chrome/common/search_urls.h
|
| @@ -0,0 +1,17 @@
|
| +// Copyright 2013 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#ifndef CHROME_COMMON_SEARCH_URLS_H_
|
| +#define CHROME_COMMON_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 // CHROME_COMMON_SEARCH_URLS_H_
|
|
|