chromium/base/scoped_native_library.cc

// Copyright 2011 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#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 {}

}  // namespace base