diff options
author | dcheng <dcheng@chromium.org> | 2014-08-26 14:52:56 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-08-26 21:54:29 +0000 |
commit | 54c3719d6bd03e7f2a644b8ce611e68a67bc341f (patch) | |
tree | 806c06bdcd946468b77f7ca10a53d18567ac2960 /content/browser/plugin_service_impl.cc | |
parent | 1a14f497bd17d41d0e0ffceb1fb23dea507b8eae (diff) | |
download | chromium_src-54c3719d6bd03e7f2a644b8ce611e68a67bc341f.zip chromium_src-54c3719d6bd03e7f2a644b8ce611e68a67bc341f.tar.gz chromium_src-54c3719d6bd03e7f2a644b8ce611e68a67bc341f.tar.bz2 |
Remove implicit conversions from scoped_refptr to T* in content/
This patch was generated by running the rewrite_scoped_refptr clang tool
on a Linux build.
BUG=110610
Review URL: https://codereview.chromium.org/504273002
Cr-Commit-Position: refs/heads/master@{#291986}
Diffstat (limited to 'content/browser/plugin_service_impl.cc')
-rw-r--r-- | content/browser/plugin_service_impl.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/browser/plugin_service_impl.cc b/content/browser/plugin_service_impl.cc index 00326e3..e4be1a0 100644 --- a/content/browser/plugin_service_impl.cc +++ b/content/browser/plugin_service_impl.cc @@ -634,7 +634,7 @@ void PluginServiceImpl::GetPluginsOnIOThread( // If we switch back to loading plugins in process, then we need to make // sure g_thread_init() gets called since plugins may call glib at load. - if (!plugin_loader_) + if (!plugin_loader_.get()) plugin_loader_ = new PluginLoaderPosix; plugin_loader_->GetPlugins( |