| Index: content/app/android/child_process_service.cc
|
| diff --git a/content/app/android/child_process_service.cc b/content/app/android/child_process_service.cc
|
| index 2575d3c92ca6870af96bd99e8f776ec06bb1c050..c6301aebdddf5f114a499f692fee20deaa208e10 100644
|
| --- a/content/app/android/child_process_service.cc
|
| +++ b/content/app/android/child_process_service.cc
|
| @@ -154,7 +154,7 @@ void RegisterGlobalFileDescriptor(JNIEnv* env,
|
| jint fd,
|
| jlong offset,
|
| jlong size) {
|
| - base::MemoryMappedFile::Region region(offset, size);
|
| + base::MemoryMappedFile::Region region = {offset, size};
|
| base::GlobalDescriptors::GetInstance()->Set(id, fd, region);
|
| }
|
|
|
|
|