diff options
author | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-28 18:03:55 +0000 |
---|---|---|
committer | agl@chromium.org <agl@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-09-28 18:03:55 +0000 |
commit | 9ba8f8dd3bf0184eb46cb9f58e1560be1a789fe5 (patch) | |
tree | 6d9559338bc419fc6d665ed0dd5ab3721c436a65 /chrome/app/breakpad_linux.h | |
parent | e967b2de9ea805ef40840280eae686040b8a5c94 (diff) | |
download | chromium_src-9ba8f8dd3bf0184eb46cb9f58e1560be1a789fe5.zip chromium_src-9ba8f8dd3bf0184eb46cb9f58e1560be1a789fe5.tar.gz chromium_src-9ba8f8dd3bf0184eb46cb9f58e1560be1a789fe5.tar.bz2 |
Linux: remove --google-internal-crash-reporting.
It's time to kill this. It's been marginally useful, but only marginally.
http://codereview.chromium.org/222021
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@27375 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app/breakpad_linux.h')
-rw-r--r-- | chrome/app/breakpad_linux.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/chrome/app/breakpad_linux.h b/chrome/app/breakpad_linux.h index e7dfebb..6c4a7e2 100644 --- a/chrome/app/breakpad_linux.h +++ b/chrome/app/breakpad_linux.h @@ -5,8 +5,6 @@ #ifndef CHROME_APP_BREAKPAD_LINUX_H_ #define CHROME_APP_BREAKPAD_LINUX_H_ -#include <string> - extern void InitCrashReporter(); static const size_t kMaxActiveURLSize = 1024; @@ -28,19 +26,4 @@ struct BreakpadInfo { extern int HandleCrashDump(const BreakpadInfo& info); -#if defined(GOOGLE_CHROME_BUILD) -// Checks that the kernel's core filename pattern is "core" and moves the -// current working directory to a temp directory. -// Returns true iff core dumping has been successfully enabled for the current -// process. -bool EnableCoreDumping(std::string* core_dump_directory); -// Blocks until the given child has exited. If the kernel indicates that the -// child dumped core, then the core is expected a file called "core" and is -// uploaded to a collection server. The core file is deleted and the given -// directory is removed. -void MonitorForCoreDumpsAndReport(const std::string& core_dump_directory, - const pid_t child); - -#endif // defined(GOOGLE_CHROME_BUILD) - #endif // CHROME_APP_BREAKPAD_LINUX_H_ |