Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(4986)

Unified Diff: chrome/service/service_process.cc

Issue 3581008: Fix instances of passing raw pointers to RefCounted objects in tasks. (Closed) Base URL: http://src.chromium.org/git/chromium.git
Patch Set: Merge Created 10 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/profile_import/profile_import_thread.cc ('k') | ipc/ipc_channel_proxy.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/service/service_process.cc
diff --git a/chrome/service/service_process.cc b/chrome/service/service_process.cc
index 86d787bbfbf901b668b97400453c7ae33ad4e7e8..8f94090c9a282645a51cd482d9f7f508531dbcdf 100644
--- a/chrome/service/service_process.cc
+++ b/chrome/service/service_process.cc
@@ -374,8 +374,12 @@ void ServiceProcess::SaveChromotingConfig(
// And then do the update.
chromoting_config_->Update(
- NewRunnableFunction(&SaveChromotingConfigFunc, chromoting_config_.get(),
- login, token, host_id, host_name));
+ NewRunnableFunction(&SaveChromotingConfigFunc,
+ chromoting_config_,
+ login,
+ token,
+ host_id,
+ host_name));
// And then save the key pair.
host_key_pair->Save(chromoting_config_);
« no previous file with comments | « chrome/profile_import/profile_import_thread.cc ('k') | ipc/ipc_channel_proxy.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698