diff options
author | apatrick@chromium.org <apatrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-19 21:02:34 +0000 |
---|---|---|
committer | apatrick@chromium.org <apatrick@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-10-19 21:02:34 +0000 |
commit | fe58a1c79a4bd8fdae804ed20750c428f7c64f83 (patch) | |
tree | 5482ef6b333ba56426093c6c3fd1f3c5629d50a4 /chrome/renderer/gpu_channel_host.h | |
parent | f76bf24628afe66ba4e20de378b4220c3d0bface (diff) | |
download | chromium_src-fe58a1c79a4bd8fdae804ed20750c428f7c64f83.zip chromium_src-fe58a1c79a4bd8fdae804ed20750c428f7c64f83.tar.gz chromium_src-fe58a1c79a4bd8fdae804ed20750c428f7c64f83.tar.bz2 |
Changed scoped_ptr to scoped_refptr for member of GpuChannelHost.
Since GpuVideoServiceHost is a reference counted class.
TEST=try
BUG=59504
Review URL: http://codereview.chromium.org/3814017
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@63104 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/renderer/gpu_channel_host.h')
-rw-r--r-- | chrome/renderer/gpu_channel_host.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/chrome/renderer/gpu_channel_host.h b/chrome/renderer/gpu_channel_host.h index 75152ba..dc738bd 100644 --- a/chrome/renderer/gpu_channel_host.h +++ b/chrome/renderer/gpu_channel_host.h @@ -99,7 +99,7 @@ class GpuChannelHost : public IPC::Channel::Listener, // This is a MessageFilter to intercept IPC messages and distribute them // to the corresponding GpuVideoDecoderHost. - scoped_ptr<GpuVideoServiceHost> gpu_video_service_host_; + scoped_refptr<GpuVideoServiceHost> gpu_video_service_host_; DISALLOW_COPY_AND_ASSIGN(GpuChannelHost); }; |