Upstream version 7.36.149.0
[platform/framework/web/crosswalk.git] / src / chrome / browser / profiles / profile.h
index 34937b2..7a90860 100644 (file)
@@ -21,7 +21,6 @@ class ExtensionService;
 class ExtensionSpecialStoragePolicy;
 class FaviconService;
 class HostContentSettingsMap;
-class PasswordStore;
 class PrefProxyConfigTracker;
 class PrefService;
 class PromoCounter;
@@ -403,6 +402,11 @@ class Profile : public content::BrowserContext {
   DISALLOW_COPY_AND_ASSIGN(Profile);
 };
 
+// The comparator for profile pointers as key in a map.
+struct ProfileCompare {
+  bool operator()(Profile* a, Profile* b) const;
+};
+
 #if defined(COMPILER_GCC)
 namespace BASE_HASH_NAMESPACE {