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

Unified Diff: chrome/browser/renderer_host/pepper/pepper_platform_verification_message_filter.cc

Issue 574463003: Remove implicit conversions from scoped_refptr to T* in c/b/renderer_host/pepper (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 6 years, 3 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/renderer_host/pepper/pepper_platform_verification_message_filter.cc
diff --git a/chrome/browser/renderer_host/pepper/pepper_platform_verification_message_filter.cc b/chrome/browser/renderer_host/pepper/pepper_platform_verification_message_filter.cc
index 4eb5936019a9ac9b9e04f4598b81bd86dcc06dea..4cc84f6d8af94fed9295aaf93e3d4d4b5c57ee5b 100644
--- a/chrome/browser/renderer_host/pepper/pepper_platform_verification_message_filter.cc
+++ b/chrome/browser/renderer_host/pepper/pepper_platform_verification_message_filter.cc
@@ -71,7 +71,7 @@ int32_t PepperPlatformVerificationMessageFilter::OnChallengePlatform(
return PP_OK_COMPLETIONPENDING;
}
- if (!pv_)
+ if (!pv_.get())
pv_ = new PlatformVerificationFlow();
pv_->ChallengePlatformKey(
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698