Index: third_party/android_crazy_linker/src/src/crazy_linker_wrappers.h |
diff --git a/third_party/android_crazy_linker/src/src/crazy_linker_wrappers.h b/third_party/android_crazy_linker/src/src/crazy_linker_wrappers.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..5e078d15a1cd27e9a662e80ba4751a0fd3ac705c |
--- /dev/null |
+++ b/third_party/android_crazy_linker/src/src/crazy_linker_wrappers.h |
@@ -0,0 +1,17 @@ |
+// Copyright 2014 The Chromium Authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef CRAZY_LINKER_WRAPPERS_H |
+#define CRAZY_LINKER_WRAPPERS_H |
+ |
+namespace crazy { |
+ |
+// If |symbol_name| is the name of a linker-specific symbol name, like |
+// 'dlopen' or 'dlsym', return the address of the corresponding wrapper. |
+// Return NULL otherwise. |
+void* WrapLinkerSymbol(const char* symbol_name); |
+ |
+} // namespace crazy |
+ |
+#endif // CRAZY_LINKER_WRAPPERS_H |