diff options
author | dmaclach@chromium.org <dmaclach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-21 00:46:17 +0000 |
---|---|---|
committer | dmaclach@chromium.org <dmaclach@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-12-21 00:46:17 +0000 |
commit | 2b7558bfdedd575d472fdb3d632165e96be1d939 (patch) | |
tree | 3191e88325bddb5c9291f5ebefc2a529a2f93641 | |
parent | 64264efa8b4a0bf37b19042f295f9990a7f388c9 (diff) | |
download | chromium_src-2b7558bfdedd575d472fdb3d632165e96be1d939.zip chromium_src-2b7558bfdedd575d472fdb3d632165e96be1d939.tar.gz chromium_src-2b7558bfdedd575d472fdb3d632165e96be1d939.tar.bz2 |
Stop the chromoting_context
BUG=NONE
TEST=BUILD
Review URL: http://codereview.chromium.org/6009003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@69774 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r-- | chrome/service/service_process.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/chrome/service/service_process.cc b/chrome/service/service_process.cc index 0d6ac40..517ccfcc 100644 --- a/chrome/service/service_process.cc +++ b/chrome/service/service_process.cc @@ -295,6 +295,10 @@ bool ServiceProcess::ShutdownChromotingHost() { // the chromoting context. chromoting_host_->Shutdown(); chromoting_host_ = NULL; + + chromoting_context_->Stop(); + chromoting_context_ .reset(); + return true; } |