diff options
Diffstat (limited to 'content/common/gpu/client/gpu_channel_host.cc')
-rw-r--r-- | content/common/gpu/client/gpu_channel_host.cc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/content/common/gpu/client/gpu_channel_host.cc b/content/common/gpu/client/gpu_channel_host.cc index 16fee44..19e1500 100644 --- a/content/common/gpu/client/gpu_channel_host.cc +++ b/content/common/gpu/client/gpu_channel_host.cc @@ -99,8 +99,9 @@ void GpuChannelHost::MessageFilter::OnChannelError() { base::Bind(&GpuChannelHost::OnChannelError, parent_)); } -GpuChannelHost::GpuChannelHost(GpuChannelHostFactory* factory) +GpuChannelHost::GpuChannelHost(GpuChannelHostFactory* factory, int client_id) : factory_(factory), + client_id_(client_id), state_(kUnconnected) { } |