| Index: gin/v8_initializer.h
|
| diff --git a/gin/v8_initializer.h b/gin/v8_initializer.h
|
| index dcb5329d074383f6a80a4aab34848d2935596df3..4c0348048127c16b0fd3bd8ce317688926623801 100644
|
| --- a/gin/v8_initializer.h
|
| +++ b/gin/v8_initializer.h
|
| @@ -65,6 +65,19 @@ class GIN_EXPORT V8Initializer {
|
| // Will return -1 if the file does not exist.
|
| static base::PlatformFile GetOpenSnapshotFileForChildProcesses(
|
| base::MemoryMappedFile::Region* region_out);
|
| +
|
| +#if defined(OS_ANDROID)
|
| + static base::PlatformFile GetOpenNativesFileForChildProcesses(
|
| + base::MemoryMappedFile::Region* region_out,
|
| + bool abi_32_bit);
|
| + static base::PlatformFile GetOpenSnapshotFileForChildProcesses(
|
| + base::MemoryMappedFile::Region* region_out,
|
| + bool abi_32_bit);
|
| +
|
| + static base::FilePath GetNativesFilePath(bool abi_32_bit);
|
| + static base::FilePath GetSnapshotFilePath(bool abi_32_bit);
|
| +#endif
|
| +
|
| #endif // V8_USE_EXTERNAL_STARTUP_DATA
|
| };
|
|
|
|
|