diff options
author | dcheng <dcheng@chromium.org> | 2014-08-26 14:52:56 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-08-26 21:54:29 +0000 |
commit | 54c3719d6bd03e7f2a644b8ce611e68a67bc341f (patch) | |
tree | 806c06bdcd946468b77f7ca10a53d18567ac2960 /content/browser/startup_task_runner.cc | |
parent | 1a14f497bd17d41d0e0ffceb1fb23dea507b8eae (diff) | |
download | chromium_src-54c3719d6bd03e7f2a644b8ce611e68a67bc341f.zip chromium_src-54c3719d6bd03e7f2a644b8ce611e68a67bc341f.tar.gz chromium_src-54c3719d6bd03e7f2a644b8ce611e68a67bc341f.tar.bz2 |
Remove implicit conversions from scoped_refptr to T* in content/
This patch was generated by running the rewrite_scoped_refptr clang tool
on a Linux build.
BUG=110610
Review URL: https://codereview.chromium.org/504273002
Cr-Commit-Position: refs/heads/master@{#291986}
Diffstat (limited to 'content/browser/startup_task_runner.cc')
-rw-r--r-- | content/browser/startup_task_runner.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/browser/startup_task_runner.cc b/content/browser/startup_task_runner.cc index 4746afe..8e680bd 100644 --- a/content/browser/startup_task_runner.cc +++ b/content/browser/startup_task_runner.cc @@ -22,7 +22,7 @@ void StartupTaskRunner::AddTask(StartupTask& callback) { } void StartupTaskRunner::StartRunningTasksAsync() { - DCHECK(proxy_); + DCHECK(proxy_.get()); int result = 0; if (task_list_.empty()) { if (!startup_complete_callback_.is_null()) { |