summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorgregoryd@google.com <gregoryd@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-12-18 01:41:27 +0000
committergregoryd@google.com <gregoryd@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-12-18 01:41:27 +0000
commit7c4b495825710ab2f37967a3963ac48a977bcfc6 (patch)
treecff17ddb97162873d0c3503201ca4f47d8b8e1e2
parentc27e411de097d9da503f6d122e9df1083938ee45 (diff)
downloadchromium_src-7c4b495825710ab2f37967a3963ac48a977bcfc6.zip
chromium_src-7c4b495825710ab2f37967a3963ac48a977bcfc6.tar.gz
chromium_src-7c4b495825710ab2f37967a3963ac48a977bcfc6.tar.bz2
Update breakpad (432->452)
TEST=none BUG=none Review URL: http://codereview.chromium.org/503052 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@34916 0039d316-1c4b-4281-b951-d872f2087c98
-rw-r--r--DEPS2
-rw-r--r--chrome/tools/crash_service/crash_service.cc2
2 files changed, 2 insertions, 2 deletions
diff --git a/DEPS b/DEPS
index f08a61e..d3d2562 100644
--- a/DEPS
+++ b/DEPS
@@ -9,7 +9,7 @@ vars = {
deps = {
"src/breakpad/src":
- "http://google-breakpad.googlecode.com/svn/trunk/src@432",
+ "http://google-breakpad.googlecode.com/svn/trunk/src@452",
"src/build/util/support":
"/trunk/deps/support@20411",
diff --git a/chrome/tools/crash_service/crash_service.cc b/chrome/tools/crash_service/crash_service.cc
index 0ec3ba6..72d26d0 100644
--- a/chrome/tools/crash_service/crash_service.cc
+++ b/chrome/tools/crash_service/crash_service.cc
@@ -37,7 +37,7 @@ bool CustomInfoToMap(const google_breakpad::ClientInfo* client_info,
const std::wstring& reporter_tag, CrashMap* map) {
google_breakpad::CustomClientInfo info = client_info->GetCustomInfo();
- for (int i = 0; i < info.count; ++i) {
+ for (uintptr_t i = 0; i < info.count; ++i) {
(*map)[info.entries[i].name] = info.entries[i].value;
}