| Index: components/breakpad/browser/crash_dump_manager_android.h
|
| diff --git a/components/breakpad/browser/crash_dump_manager_android.h b/components/breakpad/browser/crash_dump_manager_android.h
|
| index aa79fc664caf1f27818d7b2041473c284c6f95ac..fdb57d7824ec554ff134448123e9690e7394ad53 100644
|
| --- a/components/breakpad/browser/crash_dump_manager_android.h
|
| +++ b/components/breakpad/browser/crash_dump_manager_android.h
|
| @@ -7,8 +7,8 @@
|
|
|
| #include <map>
|
|
|
| +#include "base/files/file.h"
|
| #include "base/files/file_path.h"
|
| -#include "base/platform_file.h"
|
| #include "base/process/process.h"
|
| #include "base/synchronization/lock.h"
|
| #include "content/public/browser/browser_child_process_observer.h"
|
| @@ -41,9 +41,9 @@ class CrashDumpManager : public content::BrowserChildProcessObserver,
|
|
|
| virtual ~CrashDumpManager();
|
|
|
| - // Returns a file descriptor that should be used to generate a minidump for
|
| - // the process |child_process_id|.
|
| - int CreateMinidumpFile(int child_process_id);
|
| + // Returns a file that should be used to generate a minidump for the process
|
| + // |child_process_id|.
|
| + base::File CreateMinidumpFile(int child_process_id);
|
|
|
| private:
|
| typedef std::map<int, base::FilePath> ChildProcessIDToMinidumpPath;
|
|
|