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

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

Issue 12163003: Add FilePath to base namespace. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years, 10 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 | « media/base/media.h ('k') | media/filters/pipeline_integration_test_base.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 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 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 8
9 // This file is intended for platforms that don't need to load any media 9 // This file is intended for platforms that don't need to load any media
10 // libraries (e.g., Android and iOS). 10 // libraries (e.g., Android and iOS).
11 namespace media { 11 namespace media {
12 12
13 bool InitializeMediaLibrary(const FilePath& module_dir) { 13 bool InitializeMediaLibrary(const base::FilePath& module_dir) {
14 return true; 14 return true;
15 } 15 }
16 16
17 void InitializeMediaLibraryForTesting() { 17 void InitializeMediaLibraryForTesting() {
18 } 18 }
19 19
20 bool IsMediaLibraryInitialized() { 20 bool IsMediaLibraryInitialized() {
21 return true; 21 return true;
22 } 22 }
23 23
24 } // namespace media 24 } // namespace media
OLDNEW
« no previous file with comments | « media/base/media.h ('k') | media/filters/pipeline_integration_test_base.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698