diff options
Diffstat (limited to 'media/base/media_posix.cc')
-rwxr-xr-x | media/base/media_posix.cc | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/media/base/media_posix.cc b/media/base/media_posix.cc new file mode 100755 index 0000000..664f9f8 --- /dev/null +++ b/media/base/media_posix.cc @@ -0,0 +1,19 @@ +// Copyright (c) 2009 The Chromium Authors. All rights reserved. +// Use of this source code is governed by a BSD-style license that can be +// found in the LICENSE file. + +#include "media/base/media.h" + +#include "base/logging.h" +#include "base/path_service.h" + +namespace media { + +// Attempts to initialize the media library (loading DLLs, DSOs, etc.). +// Returns true if everything was successfully initialized, false otherwise. +bool InitializeMediaLibrary(const FilePath& module_dir) { + NOTIMPLEMENTED(); + return false; +} + +} // namespace media |