OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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 "content/common/gpu/client/gpu_video_encode_accelerator_host.h" | 5 #include "content/common/gpu/client/gpu_video_encode_accelerator_host.h" |
6 | 6 |
7 #include "base/logging.h" | 7 #include "base/logging.h" |
8 #include "base/message_loop/message_loop_proxy.h" | 8 #include "base/message_loop/message_loop_proxy.h" |
9 #include "content/common/gpu/client/gpu_channel_host.h" | 9 #include "content/common/gpu/client/gpu_channel_host.h" |
10 #include "content/common/gpu/gpu_messages.h" | 10 #include "content/common/gpu/gpu_messages.h" |
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
208 delete message; | 208 delete message; |
209 NotifyError(kPlatformFailureError); | 209 NotifyError(kPlatformFailureError); |
210 } else if (!channel_->Send(message)) { | 210 } else if (!channel_->Send(message)) { |
211 DLOG(ERROR) << "Send(): sending failed: message->type()=" | 211 DLOG(ERROR) << "Send(): sending failed: message->type()=" |
212 << message->type(); | 212 << message->type(); |
213 NotifyError(kPlatformFailureError); | 213 NotifyError(kPlatformFailureError); |
214 } | 214 } |
215 } | 215 } |
216 | 216 |
217 } // namespace content | 217 } // namespace content |
OLD | NEW |