diff options
author | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-03 05:18:52 +0000 |
---|---|---|
committer | brettw@chromium.org <brettw@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-03 05:18:52 +0000 |
commit | c6b3e662b587977f356de777d151aaf360d7b12a (patch) | |
tree | 0e5d290dd3b983669aa44b31dc90d052c261a3b2 /chrome/renderer | |
parent | 57ba2333cc1d584583b0bc6013cc006bc55328f8 (diff) | |
download | chromium_src-c6b3e662b587977f356de777d151aaf360d7b12a.zip chromium_src-c6b3e662b587977f356de777d151aaf360d7b12a.tar.gz chromium_src-c6b3e662b587977f356de777d151aaf360d7b12a.tar.bz2 |
Fix Windows build again, I forgot to fix the other call in this file to
InProcessPlugins to reference the new class name.
TBR=jam
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@40492 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer')
-rw-r--r-- | chrome/renderer/render_thread.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/renderer/render_thread.cc b/chrome/renderer/render_thread.cc index ea12687..eae2a80 100644 --- a/chrome/renderer/render_thread.cc +++ b/chrome/renderer/render_thread.cc @@ -263,7 +263,7 @@ RenderThread::~RenderThread() { // Clean up plugin channels before this thread goes away. PluginChannelBase::CleanupChannels(); // Don't call COM if the renderer is in the sandbox. - if (RenderProcess::InProcessPlugins()) + if (RenderProcessImpl::InProcessPlugins()) CoUninitialize(); #endif } |