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

Side by Side 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: Remove findbugs issues. 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright (c) 2013 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.
4
5 #ifndef CRAZY_LINKER_WRAPPERS_H
6 #define CRAZY_LINKER_WRAPPERS_H
7
8 namespace crazy {
9
10 // If |symbol_name| is the name of a linker-specific symbol name, like
11 // 'dlopen' or 'dlsym', return the address of the corresponding wrapper.
12 // Return NULL otherwise.
13 void* WrapLinkerSymbol(const char* symbol_name);
14
15 } // namespace crazy
16
17 #endif // CRAZY_LINKER_WRAPPERS_H
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698