summaryrefslogtreecommitdiffstats
path: root/components/wifi
diff options
context:
space:
mode:
authordcheng <dcheng@chromium.org>2014-11-13 10:05:32 -0800
committerCommit bot <commit-bot@chromium.org>2014-11-13 18:05:55 +0000
commit58d219ec9112c692fecde412963f0b45b7b7fd6b (patch)
tree0819351283f0672926eb43704f7eb8dd23d51772 /components/wifi
parent2cb37ad893097cd5c19184c7f2b937df59b24996 (diff)
downloadchromium_src-58d219ec9112c692fecde412963f0b45b7b7fd6b.zip
chromium_src-58d219ec9112c692fecde412963f0b45b7b7fd6b.tar.gz
chromium_src-58d219ec9112c692fecde412963f0b45b7b7fd6b.tar.bz2
Remove implicit conversions from scoped_refptr to T* in components/
This patch was generated by running the rewrite_scoped_refptr clang tool on a Windows build. BUG=110610 Review URL: https://codereview.chromium.org/717263004 Cr-Commit-Position: refs/heads/master@{#304046}
Diffstat (limited to 'components/wifi')
-rw-r--r--components/wifi/wifi_service_win.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/components/wifi/wifi_service_win.cc b/components/wifi/wifi_service_win.cc
index 972406b..8126868 100644
--- a/components/wifi/wifi_service_win.cc
+++ b/components/wifi/wifi_service_win.cc
@@ -815,7 +815,7 @@ void WiFiServiceImpl::OnWlanNotificationCallback(
void WiFiServiceImpl::OnWlanNotification(
PWLAN_NOTIFICATION_DATA wlan_notification_data) {
- if (message_loop_proxy_ == NULL)
+ if (message_loop_proxy_.get() == NULL)
return;
switch (wlan_notification_data->NotificationCode) {
case wlan_notification_acm_disconnected: