This commit is contained in:
Cheng Zhao 2015-09-06 10:29:59 +08:00
parent d2ea3b496d
commit 87a1b68c47

View file

@ -91,7 +91,7 @@ class BrowserContext : public base::RefCounted<BrowserContext>,
: partition(partition), in_memory(in_memory) {}
bool operator<(const PartitionKey& other) const {
if (partition != other.partition)
if (partition == other.partition)
return in_memory < other.in_memory;
return partition < other.partition;
}