summaryrefslogtreecommitdiffstats
path: root/o3d/breakpad
diff options
context:
space:
mode:
authorgspencer@google.com <gspencer@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-23 21:35:54 +0000
committergspencer@google.com <gspencer@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-23 21:35:54 +0000
commit840434d046cbaefb5a70875b7e364523c713c79b (patch)
treeb55362ca094f48705624af7f6812964d1faeda1c /o3d/breakpad
parentf17863106dd6715f2c18b6fcccacd5f232f95831 (diff)
downloadchromium_src-840434d046cbaefb5a70875b7e364523c713c79b.zip
chromium_src-840434d046cbaefb5a70875b7e364523c713c79b.tar.gz
chromium_src-840434d046cbaefb5a70875b7e364523c713c79b.tar.bz2
These are code changes required to make the GYP build work.
Mostly these are fixes to warnings (signed/unsigned mismatches were the most common), and some changes to include paths. I've updated the build.scons files and DEPS file to match these changes so that the scons build will still function with these changes. Review URL: http://codereview.chromium.org/146047 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@19062 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'o3d/breakpad')
-rw-r--r--o3d/breakpad/win/bluescreen_detector.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/o3d/breakpad/win/bluescreen_detector.cc b/o3d/breakpad/win/bluescreen_detector.cc
index 9cdd51f..0d68fb5 100644
--- a/o3d/breakpad/win/bluescreen_detector.cc
+++ b/o3d/breakpad/win/bluescreen_detector.cc
@@ -104,7 +104,8 @@ int MarkerFileManagerInterface::DetectStrayMarkerFiles() {
// the machine was last booted
int stray_file_count = 0;
- for (int i = 0; i < marker_files.size(); ++i) {
+ for (vector<MarkerFileInfo>::size_type i = 0;
+ i < marker_files.size(); ++i) {
const MarkerFileInfo &file_info = marker_files[i];
if (time_manager_->IsMarkerFileOld(file_info)) {