| Index: chrome/app/breakpad_posix.h
|
| diff --git a/chrome/app/breakpad_linux.h b/chrome/app/breakpad_posix.h
|
| similarity index 87%
|
| rename from chrome/app/breakpad_linux.h
|
| rename to chrome/app/breakpad_posix.h
|
| index 4799d721a78c38dd0057ffc8555ff7ffbaa2f91d..994b567b1a00cf73bbe3922987922bcde5975027 100644
|
| --- a/chrome/app/breakpad_linux.h
|
| +++ b/chrome/app/breakpad_posix.h
|
| @@ -2,8 +2,8 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#ifndef CHROME_APP_BREAKPAD_LINUX_H_
|
| -#define CHROME_APP_BREAKPAD_LINUX_H_
|
| +#ifndef CHROME_APP_BREAKPAD_POSIX_H_
|
| +#define CHROME_APP_BREAKPAD_POSIX_H_
|
| #pragma once
|
|
|
| #include "base/basictypes.h"
|
| @@ -27,8 +27,9 @@ struct BreakpadInfo {
|
| unsigned distro_length; // Length of |distro|.
|
| bool upload; // Whether to upload or save crash dump.
|
| uint64_t process_start_time; // Uptime of the crashing process.
|
| + uint64_t pid; // PID where applicable.
|
| };
|
|
|
| extern void HandleCrashDump(const BreakpadInfo& info);
|
|
|
| -#endif // CHROME_APP_BREAKPAD_LINUX_H_
|
| +#endif // CHROME_APP_BREAKPAD_POSIX_H_
|
|
|