diff options
author | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-23 23:33:01 +0000 |
---|---|---|
committer | jam@chromium.org <jam@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2012-01-23 23:33:01 +0000 |
commit | 4c01d49992c56a94c2e5980a50fbb2213661c5ec (patch) | |
tree | 08617829a8df947bad80915d51f6501735e693cd /content/browser/browser_process_sub_thread.cc | |
parent | faa959294b43505bc6f3a277984f43cae02e3399 (diff) | |
download | chromium_src-4c01d49992c56a94c2e5980a50fbb2213661c5ec.zip chromium_src-4c01d49992c56a94c2e5980a50fbb2213661c5ec.tar.gz chromium_src-4c01d49992c56a94c2e5980a50fbb2213661c5ec.tar.bz2 |
Rename BrowserChildProcessHost implementation class to BrowserChildProcessHostImpl.
BUG=98716
Review URL: https://chromiumcodereview.appspot.com/9117006
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@118758 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'content/browser/browser_process_sub_thread.cc')
-rw-r--r-- | content/browser/browser_process_sub_thread.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/browser/browser_process_sub_thread.cc b/content/browser/browser_process_sub_thread.cc index 2b42da1..fb80cae 100644 --- a/content/browser/browser_process_sub_thread.cc +++ b/content/browser/browser_process_sub_thread.cc @@ -10,7 +10,7 @@ #include "base/debug/leak_tracker.h" #include "build/build_config.h" -#include "content/browser/browser_child_process_host.h" +#include "content/browser/browser_child_process_host_impl.h" #include "content/browser/in_process_webkit/indexed_db_key_utility_client.h" #include "content/browser/notification_service_impl.h" #include "content/public/common/url_fetcher.h" @@ -69,7 +69,7 @@ void BrowserProcessSubThread::IOThreadPreCleanUp() { // If any child processes are still running, terminate them and // and delete the BrowserChildProcessHost instances to release whatever // IO thread only resources they are referencing. - ::BrowserChildProcessHost::TerminateAll(); + BrowserChildProcessHostImpl::TerminateAll(); } void BrowserProcessSubThread::IOThreadPostCleanUp() { |