Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5114)

Unified Diff: chrome/browser/browser.cc

Issue 4313002: Fix Clang build by removing unused function. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 10 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/browser.cc
===================================================================
--- chrome/browser/browser.cc (revision 64745)
+++ chrome/browser/browser.cc (working copy)
@@ -175,22 +175,6 @@
!contents->render_view_host()->SuddenTerminationAllowed();
}
-// Returns true if two URLs are equal ignoring their ref (hash fragment).
-bool CompareURLsIgnoreRef(const GURL& url, const GURL& other) {
- if (url == other)
- return true;
- // If neither has a ref than there is no point in stripping the refs and
- // the URLs are different since the comparison failed in the previous if
- // statement.
- if (!url.has_ref() && !other.has_ref())
- return false;
- url_canon::Replacements<char> replacements;
- replacements.ClearRef();
- GURL url_no_ref = url.ReplaceComponents(replacements);
- GURL other_no_ref = other.ReplaceComponents(replacements);
- return url_no_ref == other_no_ref;
-}
-
} // namespace
extern bool g_log_bug53991;
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698