123456789101112131415161718192021222324252627282930313233343536373839404142 |
- #ifndef BASE_ANDROID_BUNDLE_UTILS_H_
- #define BASE_ANDROID_BUNDLE_UTILS_H_
- #include <string>
- #include "base/base_export.h"
- namespace base {
- namespace android {
- class BASE_EXPORT BundleUtils {
- public:
-
- static bool IsBundle();
-
-
-
- static std::string ResolveLibraryPath(const std::string& library_name);
-
-
-
-
-
-
-
-
-
- static void* DlOpenModuleLibraryPartition(const std::string& library_name,
- const std::string& partition);
- };
- }
- }
- #endif
|