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

Side by Side Diff: media/base/media_stub.cc

Issue 10919092: Build supported media targets on iOS. (Closed) Base URL: http://git.chromium.org/chromium/src.git@master
Patch Set: Add use_ffmpeg flag. Created 8 years, 3 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
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright 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 "media/base/media.h" 5 #include "media/base/media.h"
6 #include "base/logging.h" 6 #include "base/logging.h"
stuartmorgan 2012/09/05 12:34:24 Blank line above this one (the Android file was wr
blundell 2012/09/05 12:51:08 Done.
7 7
stuartmorgan 2012/09/05 12:34:24 Put a short comment here explaining the file, like
blundell 2012/09/05 12:51:08 Done.
8 namespace media { 8 namespace media {
9 9
10 bool InitializeMediaLibrary(const FilePath& module_dir) { 10 bool InitializeMediaLibrary(const FilePath& module_dir) {
11 // Android doesn't require any additional media libraries.
12 return true; 11 return true;
13 } 12 }
14 13
15 void InitializeMediaLibraryForTesting() {} 14 void InitializeMediaLibraryForTesting() {}
stuartmorgan 2012/09/05 12:34:24 I think this is more readable with a break before
blundell 2012/09/05 12:51:08 Done.
16 15
17 bool IsMediaLibraryInitialized() { 16 bool IsMediaLibraryInitialized() {
18 return true; 17 return true;
19 } 18 }
20 19
21 } // namespace media 20 } // namespace media
OLDNEW
« no previous file with comments | « media/base/media_android.cc ('k') | media/media.gyp » ('j') | media/media.gyp » ('J')

Powered by Google App Engine
This is Rietveld 408576698