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

Unified Diff: extensions/browser/guest_view/app_view/app_view_guest.cc

Issue 503873002: Remove implicit conversions from scoped_refptr to T* in extensions/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 4 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
« no previous file with comments | « extensions/browser/extension_registry_unittest.cc ('k') | extensions/browser/info_map.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/browser/guest_view/app_view/app_view_guest.cc
diff --git a/extensions/browser/guest_view/app_view/app_view_guest.cc b/extensions/browser/guest_view/app_view/app_view_guest.cc
index 9b82badfe1508ed2d3819d1a650d5e013db5ffe5..f0ed485336f3caf3a3cf42e5aeed25b393d996dc 100644
--- a/extensions/browser/guest_view/app_view/app_view_guest.cc
+++ b/extensions/browser/guest_view/app_view/app_view_guest.cc
@@ -79,10 +79,8 @@ bool AppViewGuest::CompletePendingRequest(
return false;
}
- response_info->app_view_guest->
- CompleteCreateWebContents(url,
- response_info->guest_extension,
- response_info->callback);
+ response_info->app_view_guest->CompleteCreateWebContents(
+ url, response_info->guest_extension.get(), response_info->callback);
response_map->erase(guest_instance_id);
return true;
« no previous file with comments | « extensions/browser/extension_registry_unittest.cc ('k') | extensions/browser/info_map.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698