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

Unified Diff: components/crash/content/browser/crash_dump_manager_android.h

Issue 2393853002: Refactor CrashDump*Manager to use a shared CrashDumpObserver singleton. (Closed)
Patch Set: Rebase Created 3 years, 11 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/crash/content/browser/crash_dump_manager_android.h
diff --git a/components/crash/content/browser/crash_dump_manager_android.h b/components/crash/content/browser/crash_dump_manager_android.h
index 7ba75cee4cfaef587fb104cdc2ce3891e1bc562d..ad711936d7f83cfec805699fdcec911c6c9bb070 100644
--- a/components/crash/content/browser/crash_dump_manager_android.h
+++ b/components/crash/content/browser/crash_dump_manager_android.h
@@ -7,17 +7,9 @@
#include <map>
-#include "base/android/application_status_listener.h"
-#include "base/files/file.h"
#include "base/files/file_path.h"
-#include "base/macros.h"
-#include "base/process/kill.h"
-#include "base/process/process.h"
#include "base/synchronization/lock.h"
-#include "content/public/browser/browser_child_process_observer.h"
-#include "content/public/browser/notification_observer.h"
-#include "content/public/browser/notification_registrar.h"
-#include "content/public/common/process_type.h"
+#include "components/crash/content/browser/crash_dump_observer_android.h"
namespace breakpad {
@@ -27,23 +19,23 @@ namespace breakpad {
// (as the browser process does not have access to some system files for the
// crashed process). So the minidump is generated in the renderer process.
// Since the isolated process cannot open files, we provide it on creation with
-// a file descriptor where to write the minidump in the event of a crash.
+// a file descriptor into which to write the minidump in the event of a crash.
// This class creates these file descriptors and associates them with render
-// processes and take the appropriate action when the render process terminates.
-class CrashDumpManager : public content::BrowserChildProcessObserver,
- public content::NotificationObserver {
+// processes and takes the appropriate action when the render process
+// terminates.
+class CrashDumpManager : public breakpad::CrashDumpObserver::Client {
public:
- // The embedder should create a single instance of the CrashDumpManager.
- static CrashDumpManager* GetInstance();
-
- // Should be created on the UI thread.
- explicit CrashDumpManager(const base::FilePath& crash_dump_dir);
-
+ CrashDumpManager(const base::FilePath& crash_dump_dir, int descriptor_id);
~CrashDumpManager() override;
- // Returns a file that should be used to generate a minidump for the process
- // |child_process_id|.
- base::File CreateMinidumpFile(int child_process_id);
+ // breakpad::CrashDumpObserver::Client implementation:
+ void OnChildStart(int child_process_id,
+ content::FileDescriptorInfo* mappings) override;
+ void OnChildExit(int child_process_id,
+ base::ProcessHandle pid,
+ content::ProcessType process_type,
+ base::TerminationStatus termination_status,
+ base::android::ApplicationState app_state) override;
private:
typedef std::map<int, base::FilePath> ChildProcessIDToMinidumpPath;
@@ -61,40 +53,23 @@ class CrashDumpManager : public content::BrowserChildProcessObserver,
};
static void ProcessMinidump(const base::FilePath& minidump_path,
+ const base::FilePath& crash_dump_dir,
base::ProcessHandle pid,
content::ProcessType process_type,
base::TerminationStatus termination_status,
base::android::ApplicationState app_state);
- // content::BrowserChildProcessObserver implementation:
- void BrowserChildProcessHostDisconnected(
- const content::ChildProcessData& data) override;
- void BrowserChildProcessCrashed(
- const content::ChildProcessData& data,
- int exit_code) override;
-
- // NotificationObserver implementation:
- void Observe(int type,
- const content::NotificationSource& source,
- const content::NotificationDetails& details) override;
-
- // Called on child process exit (including crash).
- void OnChildExit(int child_process_id,
- base::ProcessHandle pid,
- content::ProcessType process_type,
- base::TerminationStatus termination_status,
- base::android::ApplicationState app_state);
-
- content::NotificationRegistrar notification_registrar_;
-
// This map should only be accessed with its lock aquired as it is accessed
// from the PROCESS_LAUNCHER and UI threads.
base::Lock child_process_id_to_minidump_path_lock_;
ChildProcessIDToMinidumpPath child_process_id_to_minidump_path_;
+ // The directory in which temporary minidump files should be created.
base::FilePath crash_dump_dir_;
- static CrashDumpManager* instance_;
+ // The id used to identify the file descriptor in the set of file
+ // descriptor mappings passed to the child process.
+ int descriptor_id_;
DISALLOW_COPY_AND_ASSIGN(CrashDumpManager);
};
« no previous file with comments | « components/crash/content/browser/BUILD.gn ('k') | components/crash/content/browser/crash_dump_manager_android.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698