diff options
Diffstat (limited to 'content/renderer/gpu/gpu_channel_host.cc')
-rw-r--r-- | content/renderer/gpu/gpu_channel_host.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/content/renderer/gpu/gpu_channel_host.cc b/content/renderer/gpu/gpu_channel_host.cc index cfd381e..d66c72a 100644 --- a/content/renderer/gpu/gpu_channel_host.cc +++ b/content/renderer/gpu/gpu_channel_host.cc @@ -154,11 +154,11 @@ void GpuChannelHost::Connect( Send(new GpuChannelMsg_Initialize(renderer_process_for_gpu)); } -void GpuChannelHost::set_gpu_info(const GPUInfo& gpu_info) { +void GpuChannelHost::set_gpu_info(const content::GPUInfo& gpu_info) { gpu_info_ = gpu_info; } -const GPUInfo& GpuChannelHost::gpu_info() const { +const content::GPUInfo& GpuChannelHost::gpu_info() const { return gpu_info_; } |