| Index: chrome/browser/ui/search/instant_controller.cc
|
| diff --git a/chrome/browser/ui/search/instant_controller.cc b/chrome/browser/ui/search/instant_controller.cc
|
| index e5cf1ddefdab39a90484e42b3ba74d776d8cca94..88198a51d1459c9305b78799965c0b1c3a957302 100644
|
| --- a/chrome/browser/ui/search/instant_controller.cc
|
| +++ b/chrome/browser/ui/search/instant_controller.cc
|
| @@ -126,7 +126,7 @@ void AddSessionStorageHistogram(bool extended_enabled,
|
| it2 = session_storage_map2.begin();
|
| it1 != session_storage_map1.end() && it2 != session_storage_map2.end();
|
| ++it1, ++it2) {
|
| - if (it1->first != it2->first || it1->second != it2->second) {
|
| + if (it1->first != it2->first || it1->second.get() != it2->second.get()) {
|
| is_session_storage_the_same = false;
|
| break;
|
| }
|
|
|