OLD | NEW |
---|---|
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 |
OLD | NEW |