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

Side by Side Diff: chrome/browser/android/crash_dump_manager.h

Issue 19631004: Update include paths in chrome/browser/ for base/process changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Merge ToT 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/browser/android/crash_dump_manager.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef CHROME_BROWSER_ANDROID_CRASH_DUMP_MANAGER_H_ 5 #ifndef CHROME_BROWSER_ANDROID_CRASH_DUMP_MANAGER_H_
6 #define CHROME_BROWSER_ANDROID_CRASH_DUMP_MANAGER_H_ 6 #define CHROME_BROWSER_ANDROID_CRASH_DUMP_MANAGER_H_
7 7
8 #include <map> 8 #include <map>
9 9
10 #include "base/files/file_path.h" 10 #include "base/files/file_path.h"
11 #include "base/platform_file.h" 11 #include "base/platform_file.h"
12 #include "base/process.h" 12 #include "base/process/process.h"
13 #include "base/synchronization/lock.h" 13 #include "base/synchronization/lock.h"
14 #include "content/public/browser/browser_child_process_observer.h" 14 #include "content/public/browser/browser_child_process_observer.h"
15 #include "content/public/browser/notification_observer.h" 15 #include "content/public/browser/notification_observer.h"
16 #include "content/public/browser/notification_registrar.h" 16 #include "content/public/browser/notification_registrar.h"
17 17
18 namespace content { 18 namespace content {
19 class RenderProcessHost; 19 class RenderProcessHost;
20 } 20 }
21 21
22 // This class manages the crash minidumps. 22 // This class manages the crash minidumps.
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
72 // from the PROCESS_LAUNCHER and UI threads. 72 // from the PROCESS_LAUNCHER and UI threads.
73 base::Lock child_process_id_to_minidump_path_lock_; 73 base::Lock child_process_id_to_minidump_path_lock_;
74 ChildProcessIDToMinidumpPath child_process_id_to_minidump_path_; 74 ChildProcessIDToMinidumpPath child_process_id_to_minidump_path_;
75 75
76 static CrashDumpManager* instance_; 76 static CrashDumpManager* instance_;
77 77
78 DISALLOW_COPY_AND_ASSIGN(CrashDumpManager); 78 DISALLOW_COPY_AND_ASSIGN(CrashDumpManager);
79 }; 79 };
80 80
81 #endif // CHROME_BROWSER_ANDROID_CRASH_DUMP_MANAGER_H_ 81 #endif // CHROME_BROWSER_ANDROID_CRASH_DUMP_MANAGER_H_
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/android/crash_dump_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698