blob: 2865d316cd132e8922ec9b7d090d8166698e1d2f [file] [log] [blame]
// Copyright 2016 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#if !defined(STARBOARD)
#include "base/native_library.h"
namespace base {
NativeLibrary LoadNativeLibrary(const FilePath& library_path,
NativeLibraryLoadError* error) {
return LoadNativeLibraryWithOptions(
library_path, NativeLibraryOptions(), error);
}
} // namespace base
#endif // !defined(STARBOARD)