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

Unified Diff: chrome/browser/ui/webui/session_favicon_source.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/webui/session_favicon_source.cc
diff --git a/chrome/browser/ui/webui/session_favicon_source.cc b/chrome/browser/ui/webui/session_favicon_source.cc
index 6891cd05ae379a07209517baaf2141354fbc756b..6aacaa6859fd49d991d0f5577e8c9c8777694320 100644
--- a/chrome/browser/ui/webui/session_favicon_source.cc
+++ b/chrome/browser/ui/webui/session_favicon_source.cc
@@ -48,7 +48,7 @@ bool SessionFaviconSource::HandleMissingResource(const IconRequest& request) {
if (associator &&
associator->GetSyncedFaviconForPageURL(request.request_path.spec(),
&response)) {
- request.callback.Run(response);
+ request.callback.Run(response.get());
return true;
}
return false;
« no previous file with comments | « chrome/browser/ui/webui/quota_internals/quota_internals_proxy.cc ('k') | chrome/browser/ui/webui/theme_source.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698