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 c355fa23fa8f49055e357d58baf516ec6b970ade..6a74a2d6f9233ca57018f0264cd2438b68719dd1 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); |