summaryrefslogtreecommitdiffstats
path: root/base/test/test_pending_task.cc
diff options
context:
space:
mode:
authordcheng <dcheng@chromium.org>2014-09-04 22:28:13 -0700
committerCommit bot <commit-bot@chromium.org>2014-09-05 05:30:03 +0000
commit37fac505ffd432f088abbc5056e7c72ca59ff017 (patch)
tree0adc58a695df4a8a2b006b4222d08cef2c17bc50 /base/test/test_pending_task.cc
parentd098906547cc70f8626709ae1243be7f8c1e0e22 (diff)
downloadchromium_src-37fac505ffd432f088abbc5056e7c72ca59ff017.zip
chromium_src-37fac505ffd432f088abbc5056e7c72ca59ff017.tar.gz
chromium_src-37fac505ffd432f088abbc5056e7c72ca59ff017.tar.bz2
Random fixes for scoped_refptr operator T* removal.
BUG=110610 TBR=caitkp, michaeln, rockot, sievers, sky, willchan Review URL: https://codereview.chromium.org/543893002 Cr-Commit-Position: refs/heads/master@{#293453}
Diffstat (limited to 'base/test/test_pending_task.cc')
-rw-r--r--base/test/test_pending_task.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/base/test/test_pending_task.cc b/base/test/test_pending_task.cc
index f5ae5a1..94989de 100644
--- a/base/test/test_pending_task.cc
+++ b/base/test/test_pending_task.cc
@@ -54,7 +54,7 @@ scoped_refptr<base::debug::ConvertableToTraceFormat> TestPendingTask::AsValue()
const {
scoped_refptr<base::debug::TracedValue> state =
new base::debug::TracedValue();
- AsValueInto(state);
+ AsValueInto(state.get());
return state;
}