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

Unified Diff: chrome/browser/nacl_host/nacl_browser_delegate_impl.cc

Issue 511473002: Remove implicit conversions from scoped_refptr to T* in chrome/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Move download out 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 | « chrome/browser/io_thread.cc ('k') | chrome/browser/policy/cloud/user_policy_signin_service_base.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/nacl_host/nacl_browser_delegate_impl.cc
diff --git a/chrome/browser/nacl_host/nacl_browser_delegate_impl.cc b/chrome/browser/nacl_host/nacl_browser_delegate_impl.cc
index 6ee14fecc2698c9136a2982cae33bcb91f8a2b58..1217e2a1f14937c15ceb0bb057843c33edbf4f42 100644
--- a/chrome/browser/nacl_host/nacl_browser_delegate_impl.cc
+++ b/chrome/browser/nacl_host/nacl_browser_delegate_impl.cc
@@ -228,7 +228,7 @@ scoped_refptr<extensions::InfoMap> NaClBrowserDelegateImpl::GetExtensionInfoMap(
DCHECK(profile);
scoped_refptr<extensions::InfoMap> extension_info_map =
extensions::ExtensionSystem::Get(profile)->info_map();
- DCHECK(extension_info_map);
+ DCHECK(extension_info_map.get());
return extension_info_map;
}
#endif
« no previous file with comments | « chrome/browser/io_thread.cc ('k') | chrome/browser/policy/cloud/user_policy_signin_service_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698