Index: chrome/common/search_urls.h |
diff --git a/chrome/common/search_urls.h b/chrome/common/search_urls.h |
deleted file mode 100644 |
index 8840b5f2f1401226d69c17df97bd5b2373c90a59..0000000000000000000000000000000000000000 |
--- a/chrome/common/search_urls.h |
+++ /dev/null |
@@ -1,21 +0,0 @@ |
-// 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| in terms of origin (i.e. host, |
-// port, and scheme) and path. As a special case, this also matches if |my_url| |
-// is "https://" and |other_url| is "http://" (and host, port, and path match). |
-// This is so that "https://" URLs will be considered "Instant URLs" even if the |
-// default search provider URL is "http://". |
-bool MatchesOriginAndPath(const GURL& my_url, const GURL& other_url); |
- |
-} // namespace search |
- |
-#endif // CHROME_COMMON_SEARCH_URLS_H_ |