diff options
Diffstat (limited to 'chrome/browser/sync/syncable/path_name_cmp.h')
-rw-r--r-- | chrome/browser/sync/syncable/path_name_cmp.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/chrome/browser/sync/syncable/path_name_cmp.h b/chrome/browser/sync/syncable/path_name_cmp.h index 1478a52..6c2e138 100644 --- a/chrome/browser/sync/syncable/path_name_cmp.h +++ b/chrome/browser/sync/syncable/path_name_cmp.h @@ -5,15 +5,17 @@ #ifndef CHROME_BROWSER_SYNC_SYNCABLE_PATH_NAME_CMP_H_ #define CHROME_BROWSER_SYNC_SYNCABLE_PATH_NAME_CMP_H_ +#include <string> + #include "chrome/browser/sync/util/sync_types.h" namespace syncable { struct LessPathNames { - bool operator() (const PathString&, const PathString&) const; + bool operator() (const std::string&, const std::string&) const; }; -int ComparePathNames(const PathString& a, const PathString& b); +int ComparePathNames(const std::string& a, const std::string& b); } // namespace syncable |