diff options
author | mmoss@chromium.org <mmoss@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-26 23:58:15 +0000 |
---|---|---|
committer | mmoss@chromium.org <mmoss@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-05-26 23:58:15 +0000 |
commit | 588811c4de221eb4017741c23e90b42243f7584d (patch) | |
tree | 2c5a3f80071d580f32404d6b3add5235014ac195 /chrome/app/breakpad_linux_stub.cc | |
parent | c5b6fb5f162db28dcf0c211e8e305f31097d0445 (diff) | |
download | chromium_src-588811c4de221eb4017741c23e90b42243f7584d.zip chromium_src-588811c4de221eb4017741c23e90b42243f7584d.tar.gz chromium_src-588811c4de221eb4017741c23e90b42243f7584d.tar.bz2 |
Fix breakpad-related Linux official build breakage.
This fixes the following errors when building unit_tests:
undefined reference to `google_breakpad::WriteMinidump(char const*, int, void const*, unsigned int)'
undefined reference to `UploadCrashDump(char const*, char const*, unsigned int)'
Review URL: http://codereview.chromium.org/113876
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@16954 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app/breakpad_linux_stub.cc')
-rw-r--r-- | chrome/app/breakpad_linux_stub.cc | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/chrome/app/breakpad_linux_stub.cc b/chrome/app/breakpad_linux_stub.cc index ee99606..e92ae65 100644 --- a/chrome/app/breakpad_linux_stub.cc +++ b/chrome/app/breakpad_linux_stub.cc @@ -7,3 +7,8 @@ void EnableCrashDumping() { } + +int UploadCrashDump(const char* filename, const char* crash_url, + unsigned crash_url_length) { + return -1; +} |