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

Unified Diff: chrome_frame/crash_reporting/crash_report.cc

Issue 1703015: Some cleanup regarding Siggi's comments on http://codereview.chromium.org/173... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 8 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 | « chrome_frame/crash_reporting/crash_report.h ('k') | chrome_frame/exception_barrier.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome_frame/crash_reporting/crash_report.cc
===================================================================
--- chrome_frame/crash_reporting/crash_report.cc (revision 45764)
+++ chrome_frame/crash_reporting/crash_report.cc (working copy)
@@ -12,10 +12,12 @@
// TODO(joshia): factor out common code with chrome used for crash reporting
const wchar_t kGoogleUpdatePipeName[] = L"\\\\.\\pipe\\GoogleCrashServices\\";
-static google_breakpad::ExceptionHandler * g_breakpad = NULL;
+
+// This lock protects against concurrent access to g_breakpad.
static Lock g_breakpad_lock;
+static google_breakpad::ExceptionHandler* g_breakpad = NULL;
-// These minidump flag combinations have been tested safe agains the
+// These minidump flag combinations have been tested safe against the
// DbgHelp.dll version that ships with Windows XP SP2.
const MINIDUMP_TYPE kSmallDumpType = static_cast<MINIDUMP_TYPE>(
MiniDumpWithProcessThreadData | // Get PEB and TEB.
« no previous file with comments | « chrome_frame/crash_reporting/crash_report.h ('k') | chrome_frame/exception_barrier.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698