Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(10)

Side by Side Diff: webkit/support/test_stream_texture_factory_android.cc

Issue 10702124: Avoid setting unused parameter in TestStreamTextureFactory::CreateStreamTexture() (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698