| Index: content/gpu/gpu_main.cc
|
| diff --git a/content/gpu/gpu_main.cc b/content/gpu/gpu_main.cc
|
| index 977bd73ca229eebe9a99636db4087039c4629276..22dd19566f31d942203caf43ff37011562490f6b 100644
|
| --- a/content/gpu/gpu_main.cc
|
| +++ b/content/gpu/gpu_main.cc
|
| @@ -20,6 +20,7 @@
|
| #include "build/build_config.h"
|
| #include "content/child/child_process.h"
|
| #include "content/common/content_constants_internal.h"
|
| +#include "content/common/gpu/gpu_browser_messages.h"
|
| #include "content/common/gpu/gpu_config.h"
|
| #include "content/common/gpu/gpu_memory_buffer_factory.h"
|
| #include "content/common/gpu/gpu_messages.h"
|
| @@ -121,8 +122,8 @@ bool GpuProcessLogMessageHandler(int severity,
|
| const std::string& str) {
|
| std::string header = str.substr(0, message_start);
|
| std::string message = str.substr(message_start);
|
| - deferred_messages.Get().push(new GpuHostMsg_OnLogMessage(
|
| - severity, header, message));
|
| + deferred_messages.Get().push(
|
| + new GpuBrowserHostMsg_OnLogMessage(severity, header, message));
|
| return false;
|
| }
|
|
|
|
|