| Index: components/crash/content/app/breakpad_win.cc
|
| diff --git a/components/crash/content/app/breakpad_win.cc b/components/crash/content/app/breakpad_win.cc
|
| index c80c02303db6fca918729117233507dc48eabba9..c236230959e7ea15556cba2b78b1c8088ef0b9fb 100644
|
| --- a/components/crash/content/app/breakpad_win.cc
|
| +++ b/components/crash/content/app/breakpad_win.cc
|
| @@ -290,10 +290,10 @@ long WINAPI ChromeExceptionFilter(EXCEPTION_POINTERS* info) {
|
| return EXCEPTION_EXECUTE_HANDLER;
|
| }
|
|
|
| -// Exception filter for the service process used when breakpad is not enabled.
|
| -// We just display the "Do you want to restart" message and then die
|
| -// (without calling the previous filter).
|
| -long WINAPI ServiceExceptionFilter(EXCEPTION_POINTERS* info) {
|
| +// Exception filter for the Cloud Print service process used when breakpad is
|
| +// not enabled. We just display the "Do you want to restart" message and then
|
| +// die (without calling the previous filter).
|
| +long WINAPI CloudPrintServiceExceptionFilter(EXCEPTION_POINTERS* info) {
|
| DumpDoneCallback(NULL, NULL, NULL, info, NULL, false);
|
| return EXCEPTION_EXECUTE_HANDLER;
|
| }
|
| @@ -581,9 +581,9 @@ void InitCrashReporter(const std::string& process_type_switch) {
|
| if (process_type == L"browser") {
|
| callback = &DumpDoneCallback;
|
| default_filter = &ChromeExceptionFilter;
|
| - } else if (process_type == L"service") {
|
| + } else if (process_type == L"cloud-print-service") {
|
| callback = &DumpDoneCallback;
|
| - default_filter = &ServiceExceptionFilter;
|
| + default_filter = &CloudPrintServiceExceptionFilter;
|
| }
|
|
|
| if (GetCrashReporterClient()->ShouldCreatePipeName(process_type))
|
|
|