| OLD | NEW |
| 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include <vector> | 5 #include <vector> |
| 6 #include <string> | 6 #include <string> |
| 7 | 7 |
| 8 #include "base/shared_memory.h" | 8 #include "base/shared_memory.h" |
| 9 #include "content/common/common_param_traits.h" | 9 #include "content/common/common_param_traits.h" |
| 10 #include "content/common/gpu_info.h" | 10 #include "content/common/gpu/gpu_info.h" |
| 11 #include "gpu/ipc/gpu_command_buffer_traits.h" | 11 #include "gpu/ipc/gpu_command_buffer_traits.h" |
| 12 #include "gpu/command_buffer/common/command_buffer.h" | 12 #include "gpu/command_buffer/common/command_buffer.h" |
| 13 #include "ipc/ipc_channel_handle.h" | 13 #include "ipc/ipc_channel_handle.h" |
| 14 #include "ipc/ipc_message_macros.h" | 14 #include "ipc/ipc_message_macros.h" |
| 15 #include "ui/gfx/native_widget_types.h" | 15 #include "ui/gfx/native_widget_types.h" |
| 16 #include "ui/gfx/size.h" | 16 #include "ui/gfx/size.h" |
| 17 | 17 |
| 18 // Multiply-included message file, hence no include guard. | 18 // Multiply-included message file, hence no include guard. |
| 19 | 19 |
| 20 #define IPC_MESSAGE_START GpuMsgStart | 20 #define IPC_MESSAGE_START GpuMsgStart |
| (...skipping 519 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 540 | 540 |
| 541 // Confirm decoder has been flushed. | 541 // Confirm decoder has been flushed. |
| 542 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_FlushDone) | 542 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_FlushDone) |
| 543 | 543 |
| 544 // Decoder has faced end of stream marker in the stream. | 544 // Decoder has faced end of stream marker in the stream. |
| 545 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_EndOfStream) | 545 IPC_MESSAGE_ROUTED0(AcceleratedVideoDecoderHostMsg_EndOfStream) |
| 546 | 546 |
| 547 // Video decoder has encountered an error. | 547 // Video decoder has encountered an error. |
| 548 IPC_MESSAGE_ROUTED1(AcceleratedVideoDecoderHostMsg_ErrorNotification, | 548 IPC_MESSAGE_ROUTED1(AcceleratedVideoDecoderHostMsg_ErrorNotification, |
| 549 uint32) /* Error ID */ | 549 uint32) /* Error ID */ |
| OLD | NEW |