From 87a1b68c477cad2303a3ac33a080d1995f8a259f Mon Sep 17 00:00:00 2001 From: Cheng Zhao Date: Sun, 6 Sep 2015 10:29:59 +0800 Subject: [PATCH] Fix typo --- brightray/browser/browser_context.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/brightray/browser/browser_context.h b/brightray/browser/browser_context.h index 0ae89f3e48c3..836d17c84bf1 100644 --- a/brightray/browser/browser_context.h +++ b/brightray/browser/browser_context.h @@ -91,7 +91,7 @@ class BrowserContext : public base::RefCounted, : 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; }