blob: b0d1125b701b9264c76d9f8c5ca8a9c92a631d10 [file] [log] [blame]
Avi Drissmane4622aa2022-09-08 20:36:061// Copyright 2016 The Chromium Authors
rockot596a0dd2016-08-26 00:57:512// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#include "base/native_library.h"
6
7namespace base {
8
9NativeLibrary LoadNativeLibrary(const FilePath& library_path,
10 NativeLibraryLoadError* error) {
11 return LoadNativeLibraryWithOptions(
12 library_path, NativeLibraryOptions(), error);
13}
14
15} // namespace base