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

Unified Diff: sync/syncable/syncable_id.cc

Issue 9836100: Add full text regex searching to chrome://sync (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix typo Created 8 years, 8 months 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 | « sync/syncable/syncable_id.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sync/syncable/syncable_id.cc
diff --git a/sync/syncable/syncable_id.cc b/sync/syncable/syncable_id.cc
index f860cb98a1f8d25e8203b7873f547f21fdc61335..92a741143a78ae122e13048ae96db1c1f94e2e7d 100644
--- a/sync/syncable/syncable_id.cc
+++ b/sync/syncable/syncable_id.cc
@@ -6,7 +6,6 @@
#include <iosfwd>
-#include "base/string_util.h"
#include "base/values.h"
using std::ostream;
@@ -57,12 +56,6 @@ Id Id::GetLexicographicSuccessor() const {
return id;
}
-bool Id::ContainsStringCaseInsensitive(
- const std::string& lowercase_query) const {
- DCHECK_EQ(StringToLowerASCII(lowercase_query), lowercase_query);
- return StringToLowerASCII(s_).find(lowercase_query) != std::string::npos;
-}
-
// static
Id Id::GetLeastIdForLexicographicComparison() {
Id id;
« no previous file with comments | « sync/syncable/syncable_id.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698