summaryrefslogtreecommitdiff
path: root/base/native_library.h
diff options
context:
space:
mode:
Diffstat (limited to 'base/native_library.h')
-rw-r--r--base/native_library.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/base/native_library.h b/base/native_library.h
index 02eae1d508..e2b9ca7e6d 100644
--- a/base/native_library.h
+++ b/base/native_library.h
@@ -91,16 +91,6 @@ BASE_EXPORT NativeLibrary LoadNativeLibraryWithOptions(
const NativeLibraryOptions& options,
NativeLibraryLoadError* error);
-#if defined(OS_WIN)
-// Loads a native library from disk. Release it with UnloadNativeLibrary when
-// you're done.
-// This function retrieves the LoadLibrary function exported from kernel32.dll
-// and calls it instead of directly calling the LoadLibrary function via the
-// import table.
-BASE_EXPORT NativeLibrary LoadNativeLibraryDynamically(
- const FilePath& library_path);
-#endif // OS_WIN
-
// Unloads a native library.
BASE_EXPORT void UnloadNativeLibrary(NativeLibrary library);