| Index: content/browser/android/child_process_launcher_android.h
|
| diff --git a/content/browser/android/child_process_launcher_android.h b/content/browser/android/child_process_launcher_android.h
|
| index f81c5c33efcd434c55e7e8e0d942602f223dcde6..a8ea904c6f15167c1d8c8bce4c2cf6f1c870f801 100644
|
| --- a/content/browser/android/child_process_launcher_android.h
|
| +++ b/content/browser/android/child_process_launcher_android.h
|
| @@ -8,11 +8,11 @@
|
| #include <jni.h>
|
|
|
| #include <map>
|
| +#include <memory>
|
|
|
| #include "base/callback.h"
|
| #include "base/command_line.h"
|
| #include "base/files/memory_mapped_file.h"
|
| -#include "base/memory/scoped_ptr.h"
|
| #include "base/process/process.h"
|
| #include "content/public/browser/file_descriptor_info.h"
|
| #include "ui/gl/android/scoped_java_surface.h"
|
| @@ -27,7 +27,7 @@ typedef base::Callback<void(base::ProcessHandle)> StartChildProcessCallback;
|
| void StartChildProcess(
|
| const base::CommandLine::StringVector& argv,
|
| int child_process_id,
|
| - const scoped_ptr<FileDescriptorInfo> files_to_register,
|
| + const std::unique_ptr<FileDescriptorInfo> files_to_register,
|
| const std::map<int, base::MemoryMappedFile::Region>& regions,
|
| const StartChildProcessCallback& callback);
|
|
|
|
|