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

Unified Diff: base/process/memory_linux.cc

Issue 18770006: Remove USE_LINUX_BREAKPAD ifdef since we don't need it for chromium anymore. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: lei's comments + sync Created 7 years, 5 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: base/process/memory_linux.cc
===================================================================
--- base/process/memory_linux.cc (revision 211696)
+++ base/process/memory_linux.cc (working copy)
@@ -14,16 +14,12 @@
namespace base {
-#if defined(USE_LINUX_BREAKPAD)
size_t g_oom_size = 0U;
-#endif
namespace {
void OnNoMemorySize(size_t size) {
-#if defined(USE_LINUX_BREAKPAD)
g_oom_size = size;
-#endif
if (size != 0)
LOG(FATAL) << "Out of memory, size = " << size;

Powered by Google App Engine
This is Rietveld 408576698