| Index: content/browser/renderer_host/render_process_host_impl.cc
|
| diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc
|
| index 623c40a2a135cd975068a0162d6d518c3c2a81c8..3aa68feb3b4b4211c1bd27d6c1825f69866ce37d 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -120,7 +120,7 @@
|
| #include "content/common/child_process_messages.h"
|
| #include "content/common/content_switches_internal.h"
|
| #include "content/common/frame_messages.h"
|
| -#include "content/common/gpu/gpu_messages.h"
|
| +#include "content/common/gpu/gpu_browser_messages.h"
|
| #include "content/common/in_process_child_thread_params.h"
|
| #include "content/common/mojo/channel_init.h"
|
| #include "content/common/mojo/mojo_messages.h"
|
| @@ -1146,9 +1146,10 @@ void RenderProcessHostImpl::SendUpdateValueState(unsigned int target,
|
| const gpu::ValueState& state) {
|
| DCHECK(subscribe_uniform_enabled_);
|
| if (subscription_set_.find(target) != subscription_set_.end()) {
|
| - GpuProcessHost::SendOnIO(GpuProcessHost::GPU_PROCESS_KIND_SANDBOXED,
|
| - CAUSE_FOR_GPU_LAUNCH_NO_LAUNCH,
|
| - new GpuMsg_UpdateValueState(id_, target, state));
|
| + GpuProcessHost::SendOnIO(
|
| + GpuProcessHost::GPU_PROCESS_KIND_SANDBOXED,
|
| + CAUSE_FOR_GPU_LAUNCH_NO_LAUNCH,
|
| + new GpuBrowserMsg_UpdateValueState(id_, target, state));
|
| } else {
|
| // Store the ValueState locally in case a Valuebuffer subscribes to it later
|
| pending_valuebuffer_state_->UpdateState(target, state);
|
|
|