#include "base/scoped_native_library.h"
namespace base {
void NativeLibraryTraits::Free(NativeLibrary library) { … }
BaseClass;
ScopedNativeLibrary::ScopedNativeLibrary() : … { … }
ScopedNativeLibrary::~ScopedNativeLibrary() = default;
ScopedNativeLibrary::ScopedNativeLibrary(NativeLibrary library)
: … { … }
ScopedNativeLibrary::ScopedNativeLibrary(const FilePath& library_path)
: … { … }
ScopedNativeLibrary::ScopedNativeLibrary(ScopedNativeLibrary&& scoped_library)
: … { … }
void* ScopedNativeLibrary::GetFunctionPointer(const char* function_name) const { … }
const NativeLibraryLoadError* ScopedNativeLibrary::GetError() const { … }
}