Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Unified Diff: third_party/crazy_linker/crazy_linker/src/crazy_linker_wrappers.h

Issue 23717023: Android: Add chrome-specific dynamic linker. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix compile error (previous patch was a mistake). Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: third_party/crazy_linker/crazy_linker/src/crazy_linker_wrappers.h
diff --git a/third_party/crazy_linker/crazy_linker/src/crazy_linker_wrappers.h b/third_party/crazy_linker/crazy_linker/src/crazy_linker_wrappers.h
new file mode 100644
index 0000000000000000000000000000000000000000..f1b1dfc7d9e3c48bc091f625c72ab656d9d44f20
--- /dev/null
+++ b/third_party/crazy_linker/crazy_linker/src/crazy_linker_wrappers.h
@@ -0,0 +1,17 @@
+// Copyright (c) 2013 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

Powered by Google App Engine
This is Rietveld 408576698