Index: content/common/gpu/gpu_command_buffer_stub.cc |
diff --git a/content/common/gpu/gpu_command_buffer_stub.cc b/content/common/gpu/gpu_command_buffer_stub.cc |
index 87035bf9796f85ec2cc57820c4727970f2df6d9f..cad48f16c11f28742cda85db980ae43d2d1994cf 100644 |
--- a/content/common/gpu/gpu_command_buffer_stub.cc |
+++ b/content/common/gpu/gpu_command_buffer_stub.cc |
@@ -16,6 +16,7 @@ |
#include "base/time/time.h" |
#include "base/trace_event/trace_event.h" |
#include "build/build_config.h" |
+#include "content/common/gpu/command_buffer_console_message.h" |
#include "content/common/gpu/gpu_channel.h" |
#include "content/common/gpu/gpu_channel_manager.h" |
#include "content/common/gpu/gpu_memory_manager.h" |
@@ -1025,8 +1026,7 @@ void GpuCommandBufferStub::OnWaitFenceSyncCompleted( |
scheduler_->SetScheduled(true); |
} |
-void GpuCommandBufferStub::OnCreateImage( |
- const GpuCommandBufferMsg_CreateImage_Params& params) { |
+void GpuCommandBufferStub::OnCreateImage(const CreateImageParams& params) { |
TRACE_EVENT0("gpu", "GpuCommandBufferStub::OnCreateImage"); |
const int32_t id = params.id; |
const gfx::GpuMemoryBufferHandle& handle = params.gpu_memory_buffer; |
@@ -1092,7 +1092,7 @@ void GpuCommandBufferStub::OnDestroyImage(int32_t id) { |
void GpuCommandBufferStub::SendConsoleMessage(int32_t id, |
const std::string& message) { |
- GPUCommandBufferConsoleMessage console_message; |
+ CommandBufferConsoleMessage console_message; |
console_message.id = id; |
console_message.message = message; |
IPC::Message* msg = new GpuCommandBufferMsg_ConsoleMsg( |