Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(519)

Unified Diff: chrome/browser/ui/search/instant_controller.cc

Issue 16290004: Update chrome/ to use scoped_refptr<T>::get() rather than implicit "operator T*" (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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;
}
« no previous file with comments | « chrome/browser/ui/panels/panel_browsertest.cc ('k') | chrome/browser/ui/search/instant_extended_interactive_uitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698