diff options
author | dcheng <dcheng@chromium.org> | 2014-09-03 10:14:37 -0700 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2014-09-03 17:41:54 +0000 |
commit | d3c60604e97ef9b681ad539ceffa601c0da62188 (patch) | |
tree | 83f4b13eef13c7211a3fc9096695fe9c74aaadaa /content/browser/utility_process_host_impl.h | |
parent | 700659fd0303510f749b118cec372e0cd9ab9db2 (diff) | |
download | chromium_src-d3c60604e97ef9b681ad539ceffa601c0da62188.zip chromium_src-d3c60604e97ef9b681ad539ceffa601c0da62188.tar.gz chromium_src-d3c60604e97ef9b681ad539ceffa601c0da62188.tar.bz2 |
content/ fixups for scoped_refptr operator T* removal.
BUG=110610
TBR=sky@chromium.org
Review URL: https://codereview.chromium.org/532833003
Cr-Commit-Position: refs/heads/master@{#293159}
Diffstat (limited to 'content/browser/utility_process_host_impl.h')
-rw-r--r-- | content/browser/utility_process_host_impl.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/content/browser/utility_process_host_impl.h b/content/browser/utility_process_host_impl.h index 8486655..29f1dba 100644 --- a/content/browser/utility_process_host_impl.h +++ b/content/browser/utility_process_host_impl.h @@ -35,8 +35,9 @@ class CONTENT_EXPORT UtilityProcessHostImpl static void RegisterUtilityMainThreadFactory( UtilityMainThreadFactoryFunction create); - UtilityProcessHostImpl(UtilityProcessHostClient* client, - base::SequencedTaskRunner* client_task_runner); + UtilityProcessHostImpl( + const scoped_refptr<UtilityProcessHostClient>& client, + const scoped_refptr<base::SequencedTaskRunner>& client_task_runner); virtual ~UtilityProcessHostImpl(); // UtilityProcessHost implementation: |