Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(30)

Unified Diff: chromecast/crash/android/crash_handler.cc

Issue 1028723002: Cast ATV: crash handler should test CAST_BUILD_INCREMENTAL. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: logs crash report url Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chromecast/browser/android/apk/src/org/chromium/chromecast/shell/CastCrashUploader.java ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chromecast/crash/android/crash_handler.cc
diff --git a/chromecast/crash/android/crash_handler.cc b/chromecast/crash/android/crash_handler.cc
index 1f96d45213f7ac162c001bb7743db045077a038f..6918ee40f36ae60d7d93d0c949eb09b960c335e6 100644
--- a/chromecast/crash/android/crash_handler.cc
+++ b/chromecast/crash/android/crash_handler.cc
@@ -45,7 +45,7 @@ bool UploadCrashToStaging() {
return true;
#else
int build_number;
- if (base::StringToInt(CAST_BUILD_REVISION, &build_number))
+ if (base::StringToInt(CAST_BUILD_INCREMENTAL, &build_number))
return build_number == 0;
return true;
#endif
« no previous file with comments | « chromecast/browser/android/apk/src/org/chromium/chromecast/shell/CastCrashUploader.java ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698