| Index: content/common/gpu/gpu_channel.cc
|
| ===================================================================
|
| --- content/common/gpu/gpu_channel.cc (revision 147496)
|
| +++ content/common/gpu/gpu_channel.cc (working copy)
|
| @@ -147,10 +147,8 @@
|
| gfx::GLShareGroup* share_group,
|
| gpu::gles2::MailboxManager* mailbox,
|
| int client_id,
|
| - bool software,
|
| - gpu::gles2::ProgramCache* program_cache)
|
| + bool software)
|
| : gpu_channel_manager_(gpu_channel_manager),
|
| - program_cache_(program_cache),
|
| unprocessed_messages_(new gpu::RefCountedCounter),
|
| client_id_(client_id),
|
| share_group_(share_group ? share_group : new gfx::GLShareGroup),
|
| @@ -334,8 +332,7 @@
|
| surface_id,
|
| watchdog_,
|
| software_,
|
| - init_params.active_url,
|
| - program_cache_));
|
| + init_params.active_url));
|
| if (preempt_by_counter_.get())
|
| stub->SetPreemptByCounter(preempt_by_counter_);
|
| router_.AddRoute(*route_id, stub.get());
|
| @@ -486,8 +483,7 @@
|
| route_id,
|
| 0, watchdog_,
|
| software_,
|
| - init_params.active_url,
|
| - program_cache_));
|
| + init_params.active_url));
|
| if (preempt_by_counter_.get())
|
| stub->SetPreemptByCounter(preempt_by_counter_);
|
| router_.AddRoute(route_id, stub.get());
|
|
|