summaryrefslogtreecommitdiffstats
path: root/chrome/browser/sync
diff options
context:
space:
mode:
authorjamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-20 23:14:23 +0000
committerjamesr@chromium.org <jamesr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-11-20 23:14:23 +0000
commitf8f8250237f535750e0d8269d2762f52db090e45 (patch)
tree1cdf3da8041969b9b0ac8c045ca2bf458256ca66 /chrome/browser/sync
parentc1dc9f130ed8792c3e821f486d3c5e1ed4e567f3 (diff)
downloadchromium_src-f8f8250237f535750e0d8269d2762f52db090e45.zip
chromium_src-f8f8250237f535750e0d8269d2762f52db090e45.tar.gz
chromium_src-f8f8250237f535750e0d8269d2762f52db090e45.tar.bz2
Forces T*s to scoped_refptr<T> when PostTask()ing to a function expecting scoped_refptr<T>
Review URL: http://codereview.chromium.org/418007 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@32706 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/browser/sync')
-rw-r--r--chrome/browser/sync/sync_setup_wizard.cc8
1 files changed, 2 insertions, 6 deletions
diff --git a/chrome/browser/sync/sync_setup_wizard.cc b/chrome/browser/sync/sync_setup_wizard.cc
index e6f7bd8..e003b49 100644
--- a/chrome/browser/sync/sync_setup_wizard.cc
+++ b/chrome/browser/sync/sync_setup_wizard.cc
@@ -180,15 +180,11 @@ SyncSetupWizard::SyncSetupWizard(ProfileSyncService* service)
flow_container_(new SyncSetupFlowContainer()) {
// Add our network layer data source for 'cloudy' URLs.
SyncResourcesSource* sync_source = new SyncResourcesSource();
- bool posted = ChromeThread::PostTask(
+ ChromeThread::PostTask(
ChromeThread::IO, FROM_HERE,
NewRunnableMethod(Singleton<ChromeURLDataManager>::get(),
&ChromeURLDataManager::AddDataSource,
- sync_source));
- if (!posted) {
- sync_source->AddRef();
- sync_source->Release(); // Keep Valgrind happy in unit tests.
- }
+ make_scoped_refptr(sync_source)));
}
SyncSetupWizard::~SyncSetupWizard() {