summaryrefslogtreecommitdiffstats
path: root/components/breakpad/browser/crash_dump_manager_android.h
diff options
context:
space:
mode:
Diffstat (limited to 'components/breakpad/browser/crash_dump_manager_android.h')
-rw-r--r--components/breakpad/browser/crash_dump_manager_android.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/components/breakpad/browser/crash_dump_manager_android.h b/components/breakpad/browser/crash_dump_manager_android.h
index aa79fc6..fdb57d7 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;