| OLD | NEW |
| 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #include <stddef.h> |
| 6 |
| 7 #include "base/native_library.h" |
| 5 #include "base/scoped_native_library.h" | 8 #include "base/scoped_native_library.h" |
| 6 | 9 |
| 7 namespace base { | 10 namespace base { |
| 8 | 11 |
| 9 ScopedNativeLibrary::ScopedNativeLibrary() : library_(NULL) { | 12 ScopedNativeLibrary::ScopedNativeLibrary() : library_(NULL) { |
| 10 } | 13 } |
| 11 | 14 |
| 12 ScopedNativeLibrary::ScopedNativeLibrary(NativeLibrary library) | 15 ScopedNativeLibrary::ScopedNativeLibrary(NativeLibrary library) |
| 13 : library_(library) { | 16 : library_(library) { |
| 14 } | 17 } |
| (...skipping 20 matching lines...) Expand all Loading... |
| 35 library_ = library; | 38 library_ = library; |
| 36 } | 39 } |
| 37 | 40 |
| 38 NativeLibrary ScopedNativeLibrary::Release() { | 41 NativeLibrary ScopedNativeLibrary::Release() { |
| 39 NativeLibrary result = library_; | 42 NativeLibrary result = library_; |
| 40 library_ = NULL; | 43 library_ = NULL; |
| 41 return result; | 44 return result; |
| 42 } | 45 } |
| 43 | 46 |
| 44 } // namespace base | 47 } // namespace base |
| OLD | NEW |