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

Unified Diff: chrome/browser/chromeos/login/wizard_controller.cc

Issue 9838033: Upstream native crash handling changes for Android. (Closed) Base URL: http://git.chromium.org/git/chromium.git@trunk
Patch Set: In response to comments. Lots of linux to posix Created 8 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
Index: chrome/browser/chromeos/login/wizard_controller.cc
diff --git a/chrome/browser/chromeos/login/wizard_controller.cc b/chrome/browser/chromeos/login/wizard_controller.cc
index ffedaf0120e7113a7b307cb7959750f57d6af2e9..6f6b91b682f007cd59758048e2b44020813b9604 100644
--- a/chrome/browser/chromeos/login/wizard_controller.cc
+++ b/chrome/browser/chromeos/login/wizard_controller.cc
@@ -49,7 +49,7 @@
#include "ui/base/accelerators/accelerator.h"
#include "ui/base/l10n/l10n_util.h"
-#if defined(USE_LINUX_BREAKPAD)
+#if defined(USE_POSIX_BREAKPAD)
#include "chrome/app/breakpad_linux.h"
Yaron 2012/04/03 23:54:20 Update this throughout
carlosvaldivia 2012/04/04 20:52:34 Done.
#endif
@@ -405,7 +405,7 @@ void WizardController::OnEulaAccepted() {
OptionsUtil::ResolveMetricsReportingEnabled(usage_statistics_reporting_);
CrosSettings::Get()->SetBoolean(kStatsReportingPref, enabled);
if (enabled) {
-#if defined(USE_LINUX_BREAKPAD)
+#if defined(USE_POSIX_BREAKPAD)
// The crash reporter initialization needs IO to complete.
base::ThreadRestrictions::ScopedAllowIO allow_io;
InitCrashReporter();

Powered by Google App Engine
This is Rietveld 408576698