diff options
author | deanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-14 00:02:04 +0000 |
---|---|---|
committer | deanm@chromium.org <deanm@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2009-08-14 00:02:04 +0000 |
commit | 4cc7027434204784572b44dd0546678d560f2d61 (patch) | |
tree | 9122c191a7a09786526f7dc17bb7136d0bea1a55 /chrome/app/breakpad_linux.h | |
parent | 5e26030d358f16265cf80d3ed387ed51d0d1abec (diff) | |
download | chromium_src-4cc7027434204784572b44dd0546678d560f2d61.zip chromium_src-4cc7027434204784572b44dd0546678d560f2d61.tar.gz chromium_src-4cc7027434204784572b44dd0546678d560f2d61.tar.bz2 |
Build breakpad / crash reporting on Linux 64-bit.
Review URL: http://codereview.chromium.org/165493
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@23396 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/app/breakpad_linux.h')
-rw-r--r-- | chrome/app/breakpad_linux.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/chrome/app/breakpad_linux.h b/chrome/app/breakpad_linux.h index 0c3ccde..d06c9a2 100644 --- a/chrome/app/breakpad_linux.h +++ b/chrome/app/breakpad_linux.h @@ -10,9 +10,9 @@ extern void InitCrashReporter(); #if defined(GOOGLE_CHROME_BUILD) -static const unsigned kMaxActiveURLSize = 1024; -static const unsigned kGuidSize = 32; // 128 bits = 32 chars in hex. -static const unsigned kDistroSize = 128; +static const size_t kMaxActiveURLSize = 1024; +static const size_t kGuidSize = 32; // 128 bits = 32 chars in hex. +static const size_t kDistroSize = 128; struct BreakpadInfo { const char* filename; |