| Index: content/browser/renderer_host/render_process_host_impl.cc
|
| diff --git a/content/browser/renderer_host/render_process_host_impl.cc b/content/browser/renderer_host/render_process_host_impl.cc
|
| index 104dda2efd95595f268723d4dad8628eaf636c9e..b91e02210d69308d648fad74e117fc8e13f77b75 100644
|
| --- a/content/browser/renderer_host/render_process_host_impl.cc
|
| +++ b/content/browser/renderer_host/render_process_host_impl.cc
|
| @@ -206,7 +206,7 @@ IPC::PlatformFileForTransit CreateAecDumpFileForProcess(
|
| base::PlatformFileError error = base::PLATFORM_FILE_OK;
|
| base::PlatformFile aec_dump_file = base::CreatePlatformFile(
|
| file_path,
|
| - base::PLATFORM_FILE_CREATE_ALWAYS | base::PLATFORM_FILE_WRITE,
|
| + base::PLATFORM_FILE_OPEN_ALWAYS | base::PLATFORM_FILE_APPEND,
|
| NULL,
|
| &error);
|
| if (error != base::PLATFORM_FILE_OK) {
|
| @@ -220,7 +220,6 @@ IPC::PlatformFileForTransit CreateAecDumpFileForProcess(
|
| void DisableAecDumpOnFileThread() {
|
| DCHECK(BrowserThread::CurrentlyOn(BrowserThread::FILE));
|
| }
|
| -
|
| #endif
|
|
|
| // the global list of all renderer processes
|
|
|