diff options
Diffstat (limited to 'chrome/browser/sync/util/path_helpers_linux.cc')
-rw-r--r-- | chrome/browser/sync/util/path_helpers_linux.cc | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/chrome/browser/sync/util/path_helpers_linux.cc b/chrome/browser/sync/util/path_helpers_linux.cc index 2448f09..851e868 100644 --- a/chrome/browser/sync/util/path_helpers_linux.cc +++ b/chrome/browser/sync/util/path_helpers_linux.cc @@ -4,7 +4,6 @@ #include <sys/types.h> -#include <glib.h> #include <string.h> #include "base/logging.h" @@ -42,10 +41,3 @@ PathString AppendSlash(const PathString& path) { } return path; } - -PathString LowercasePath(const PathString& path) { - gchar* ret = g_utf8_strdown(path.c_str(), -1); - PathString retstr(ret); - g_free(ret); - return retstr; -} |