OLD | NEW |
1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 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_APP_CHROME_CRASH_REPORTER_CLIENT_H_ | 5 #ifndef CHROME_APP_CHROME_CRASH_REPORTER_CLIENT_H_ |
6 #define CHROME_APP_CHROME_CRASH_REPORTER_CLIENT_H_ | 6 #define CHROME_APP_CHROME_CRASH_REPORTER_CLIENT_H_ |
7 | 7 |
8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
9 #include "base/compiler_specific.h" | 9 #include "base/compiler_specific.h" |
10 #include "components/crash/app/crash_reporter_client.h" | 10 #include "components/crash/app/crash_reporter_client.h" |
(...skipping 22 matching lines...) Expand all Loading... |
33 virtual bool AboutToRestart() OVERRIDE; | 33 virtual bool AboutToRestart() OVERRIDE; |
34 virtual bool GetDeferredUploadsSupported(bool is_per_user_install) OVERRIDE; | 34 virtual bool GetDeferredUploadsSupported(bool is_per_user_install) OVERRIDE; |
35 virtual bool GetIsPerUserInstall(const base::FilePath& exe_path) OVERRIDE; | 35 virtual bool GetIsPerUserInstall(const base::FilePath& exe_path) OVERRIDE; |
36 virtual bool GetShouldDumpLargerDumps(bool is_per_user_install) OVERRIDE; | 36 virtual bool GetShouldDumpLargerDumps(bool is_per_user_install) OVERRIDE; |
37 virtual int GetResultCodeRespawnFailed() OVERRIDE; | 37 virtual int GetResultCodeRespawnFailed() OVERRIDE; |
38 virtual void InitBrowserCrashDumpsRegKey() OVERRIDE; | 38 virtual void InitBrowserCrashDumpsRegKey() OVERRIDE; |
39 virtual void RecordCrashDumpAttempt(bool is_real_crash) OVERRIDE; | 39 virtual void RecordCrashDumpAttempt(bool is_real_crash) OVERRIDE; |
40 #endif | 40 #endif |
41 | 41 |
42 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_IOS) | 42 #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_IOS) |
43 virtual void GetProductNameAndVersion(std::string* product_name, | 43 virtual void GetProductNameAndVersion(const char** product_name, |
44 std::string* version) OVERRIDE; | 44 const char** version) OVERRIDE; |
45 virtual base::FilePath GetReporterLogFilename() OVERRIDE; | 45 virtual base::FilePath GetReporterLogFilename() OVERRIDE; |
46 #endif | 46 #endif |
47 | 47 |
48 virtual bool GetCrashDumpLocation(base::FilePath* crash_dir) OVERRIDE; | 48 virtual bool GetCrashDumpLocation(base::FilePath* crash_dir) OVERRIDE; |
49 | 49 |
50 virtual size_t RegisterCrashKeys() OVERRIDE; | 50 virtual size_t RegisterCrashKeys() OVERRIDE; |
51 | 51 |
52 virtual bool IsRunningUnattended() OVERRIDE; | 52 virtual bool IsRunningUnattended() OVERRIDE; |
53 | 53 |
54 virtual bool GetCollectStatsConsent() OVERRIDE; | 54 virtual bool GetCollectStatsConsent() OVERRIDE; |
(...skipping 13 matching lines...) Expand all Loading... |
68 virtual bool EnableBreakpadForProcess( | 68 virtual bool EnableBreakpadForProcess( |
69 const std::string& process_type) OVERRIDE; | 69 const std::string& process_type) OVERRIDE; |
70 | 70 |
71 private: | 71 private: |
72 DISALLOW_COPY_AND_ASSIGN(ChromeCrashReporterClient); | 72 DISALLOW_COPY_AND_ASSIGN(ChromeCrashReporterClient); |
73 }; | 73 }; |
74 | 74 |
75 } // namespace chrome | 75 } // namespace chrome |
76 | 76 |
77 #endif // CHROME_APP_CHROME_CRASH_REPORTER_CLIENT_H_ | 77 #endif // CHROME_APP_CHROME_CRASH_REPORTER_CLIENT_H_ |
OLD | NEW |