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

Unified Diff: components/breakpad/browser/crash_dump_manager_android.cc

Issue 31243002: Move Linux/Android breakpad implementation to breakpad component (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: updates Created 7 years, 2 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: components/breakpad/browser/crash_dump_manager_android.cc
diff --git a/chrome/browser/android/crash_dump_manager.cc b/components/breakpad/browser/crash_dump_manager_android.cc
similarity index 98%
rename from chrome/browser/android/crash_dump_manager.cc
rename to components/breakpad/browser/crash_dump_manager_android.cc
index cb3c45c9f7155118068dd78d19239d68ae85b3f8..9abdf74f3ac85f14607abb8e47802a5bd1dbc3ea 100644
--- a/chrome/browser/android/crash_dump_manager.cc
+++ b/components/breakpad/browser/crash_dump_manager_android.cc
@@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-#include "chrome/browser/android/crash_dump_manager.h"
+#include "components/breakpad/browser/crash_dump_manager.h"
#include "base/bind.h"
#include "base/file_util.h"
@@ -22,6 +22,8 @@
using content::BrowserThread;
+namespace breakpad {
+
// static
CrashDumpManager* CrashDumpManager::instance_ = NULL;
@@ -167,3 +169,5 @@ void CrashDumpManager::OnChildExit(int child_process_id,
BrowserThread::FILE, FROM_HERE,
base::Bind(&CrashDumpManager::ProcessMinidump, minidump_path, pid));
}
+
+} // namespace breakpad

Powered by Google App Engine
This is Rietveld 408576698