OLD | NEW |
---|---|
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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 "webkit/support/test_stream_texture_factory_android.h" | 5 #include "webkit/support/test_stream_texture_factory_android.h" |
6 | 6 |
7 namespace webkit_support { | 7 namespace webkit_support { |
8 | 8 |
9 webkit_media::StreamTextureProxy* TestStreamTextureFactory::CreateProxy() { | 9 webkit_media::StreamTextureProxy* TestStreamTextureFactory::CreateProxy() { |
10 return NULL; | 10 return NULL; |
11 } | 11 } |
12 | 12 |
13 unsigned TestStreamTextureFactory::CreateStreamTexture(unsigned* texture_id) { | 13 unsigned TestStreamTextureFactory::CreateStreamTexture(unsigned* texture_id) { |
14 texture_id = 0; | |
Steve Block
2012/07/10 10:17:36
Or did you mean '*texture_id = 0;' ?
| |
15 return 0; | 14 return 0; |
16 } | 15 } |
17 | 16 |
18 void TestStreamTextureFactory::DestroyStreamTexture(unsigned texture_id) { | 17 void TestStreamTextureFactory::DestroyStreamTexture(unsigned texture_id) { |
19 } | 18 } |
20 | 19 |
21 } // namespace webkit_support | 20 } // namespace webkit_support |
OLD | NEW |