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

Unified Diff: util/win/exception_handler_server_test.cc

Issue 1356383002: win: Implement CRASHPAD_SIMULATE_CRASH() (Closed) Base URL: https://chromium.googlesource.com/crashpad/crashpad@master
Patch Set: . Created 5 years, 3 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: util/win/exception_handler_server_test.cc
diff --git a/util/win/exception_handler_server_test.cc b/util/win/exception_handler_server_test.cc
index 0c6a47995875d9cc105b9bec8a0c29a39b1c7226..15314ac6ada98730a27c59929a2a55f2d2404231 100644
--- a/util/win/exception_handler_server_test.cc
+++ b/util/win/exception_handler_server_test.cc
@@ -62,11 +62,9 @@ class TestDelegate : public ExceptionHandlerServer::Delegate {
void ExceptionHandlerServerStarted() override {
SetEvent(server_ready_);
}
- unsigned int ExceptionHandlerServerException(
+ void ExceptionHandlerServerException(
HANDLE process,
- WinVMAddress exception_information_address) override {
- return 0;
- }
+ WinVMAddress exception_information_address) override {}
void WaitForStart() { WaitForSingleObject(server_ready_, INFINITE); }

Powered by Google App Engine
This is Rietveld 408576698