Chromium Code Reviews| Index: content/gpu/gpu_main.cc |
| diff --git a/content/gpu/gpu_main.cc b/content/gpu/gpu_main.cc |
| index 7ce05a039701fdea4ff4f327d823d31c07a7b0bf..6ffeed3c31cea8a87006da4db99d488ef4f3ed10 100644 |
| --- a/content/gpu/gpu_main.cc |
| +++ b/content/gpu/gpu_main.cc |
| @@ -21,6 +21,7 @@ |
| #include "content/child/child_process.h" |
| #include "content/common/content_constants_internal.h" |
| #include "content/common/gpu/gpu_config.h" |
| +#include "content/common/gpu/gpu_host_messages.h" |
| #include "content/common/gpu/gpu_memory_buffer_factory.h" |
| #include "content/common/gpu/gpu_messages.h" |
|
piman
2016/02/24 00:58:37
nit: do you still need this?
Fady Samuel
2016/02/24 01:42:30
Done.
|
| #include "content/common/gpu/media/gpu_jpeg_decode_accelerator.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 GpuHostMsg_OnLogMessage(severity, header, message)); |
| return false; |
| } |