diff options
Diffstat (limited to 'components/breakpad/breakpad_client.cc')
-rw-r--r-- | components/breakpad/breakpad_client.cc | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/components/breakpad/breakpad_client.cc b/components/breakpad/breakpad_client.cc index a069653..502884e 100644 --- a/components/breakpad/breakpad_client.cc +++ b/components/breakpad/breakpad_client.cc @@ -37,6 +37,16 @@ void BreakpadClient::GetProductNameAndVersion(const base::FilePath& exe_path, base::string16* version, base::string16* special_build) { } + +bool BreakpadClient::ShouldShowRestartDialog(base::string16* title, + base::string16* message, + bool* is_rtl_locale) { + return false; +} + +bool BreakpadClient::AboutToRestart() { + return true; +} #endif #if defined(OS_POSIX) && !defined(OS_MACOSX) && !defined(OS_IOS) @@ -58,4 +68,8 @@ size_t BreakpadClient::RegisterCrashKeys() { return 0; } +bool BreakpadClient::IsRunningUnattended() { + return false; +} + } // namespace breakpad |