| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 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 "media/base/data_buffer.h" | 5 #include "media/base/data_buffer.h" |
| 6 #include "remoting/base/pixel_format.h" | 6 #include "remoting/base/pixel_format.h" |
| 7 #include "remoting/host/encoder_vp8.h" | 7 #include "remoting/host/encoder_vp8.h" |
| 8 #include "testing/gmock/include/gmock/gmock.h" | 8 #include "testing/gmock/include/gmock/gmock.h" |
| 9 | 9 |
| 10 namespace remoting { | 10 namespace remoting { |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 EXPECT_TRUE(encode_done); | 59 EXPECT_TRUE(encode_done); |
| 60 ASSERT_TRUE(encoded_data.get()); | 60 ASSERT_TRUE(encoded_data.get()); |
| 61 EXPECT_NE(0u, encoded_data->GetBufferSize()); | 61 EXPECT_NE(0u, encoded_data->GetBufferSize()); |
| 62 | 62 |
| 63 delete [] planes[0]; | 63 delete [] planes[0]; |
| 64 delete [] planes[1]; | 64 delete [] planes[1]; |
| 65 delete [] planes[2]; | 65 delete [] planes[2]; |
| 66 } | 66 } |
| 67 | 67 |
| 68 } // namespace remoting | 68 } // namespace remoting |
| OLD | NEW |