| Index: base/android/apk_assets.h
|
| diff --git a/base/android/apk_assets.h b/base/android/apk_assets.h
|
| index 60d436bbb70e18f8c14596829f927b3bf695f269..4fc02894c74c34263c34388050feaf3eb67de541 100644
|
| --- a/base/android/apk_assets.h
|
| +++ b/base/android/apk_assets.h
|
| @@ -8,6 +8,7 @@
|
| #include <string>
|
|
|
| #include "base/android/jni_android.h"
|
| +#include "base/files/file_path.h"
|
| #include "base/files/memory_mapped_file.h"
|
| #include "base/posix/global_descriptors.h"
|
|
|
| @@ -32,6 +33,12 @@ BASE_EXPORT bool RegisterApkAssetWithGlobalDescriptors(
|
| base::GlobalDescriptors::Key key,
|
| const std::string& file_path);
|
|
|
| +// Similar to RegisterApkAssetWithGlobalDescriptors, but registers in the
|
| +// FileDescriptorStore.
|
| +BASE_EXPORT bool RegisterApkAssetWithFileDescriptorStore(
|
| + const std::string& key,
|
| + const base::FilePath& file_path);
|
| +
|
| } // namespace android
|
| } // namespace base
|
|
|
|
|