Encrypt certificate reports before uploading to HTTP URLs
[chromium-blink-merge.git] / base / scoped_native_library.cc
blob7290d2959509279700303331a36005a35a9deb38
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "base/scoped_native_library.h"
7 namespace base {
9 ScopedNativeLibrary::ScopedNativeLibrary() : library_(NULL) {
12 ScopedNativeLibrary::ScopedNativeLibrary(NativeLibrary library)
13 : library_(library) {
16 ScopedNativeLibrary::ScopedNativeLibrary(const FilePath& library_path) {
17 library_ = base::LoadNativeLibrary(library_path, NULL);
20 ScopedNativeLibrary::~ScopedNativeLibrary() {
21 if (library_)
22 base::UnloadNativeLibrary(library_);
25 void* ScopedNativeLibrary::GetFunctionPointer(
26 const char* function_name) const {
27 if (!library_)
28 return NULL;
29 return base::GetFunctionPointerFromNativeLibrary(library_, function_name);
32 void ScopedNativeLibrary::Reset(NativeLibrary library) {
33 if (library_)
34 base::UnloadNativeLibrary(library_);
35 library_ = library;
38 NativeLibrary ScopedNativeLibrary::Release() {
39 NativeLibrary result = library_;
40 library_ = NULL;
41 return result;
44 } // namespace base