| Index: chrome/browser/sync/util/path_helpers_linux.cc
|
| ===================================================================
|
| --- chrome/browser/sync/util/path_helpers_linux.cc (revision 26817)
|
| +++ chrome/browser/sync/util/path_helpers_linux.cc (working copy)
|
| @@ -4,7 +4,6 @@
|
|
|
| #include <sys/types.h>
|
|
|
| -#include <glib.h>
|
| #include <string.h>
|
|
|
| #include "base/logging.h"
|
| @@ -42,10 +41,3 @@
|
| }
|
| return path;
|
| }
|
| -
|
| -PathString LowercasePath(const PathString& path) {
|
| - gchar* ret = g_utf8_strdown(path.c_str(), -1);
|
| - PathString retstr(ret);
|
| - g_free(ret);
|
| - return retstr;
|
| -}
|
|
|