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

Unified Diff: runtime/vm/signal_handler_win.cc

Issue 2974233002: VM: Re-format to use at most one newline between functions (Closed)
Patch Set: Rebase and merge Created 3 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/signal_handler_macos.cc ('k') | runtime/vm/simulator_arm.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/signal_handler_win.cc
diff --git a/runtime/vm/signal_handler_win.cc b/runtime/vm/signal_handler_win.cc
index 633c49e22848bc769951696f560e44a56ba8ca02..f38ba71ab5889714b072ae518814af9a842421a9 100644
--- a/runtime/vm/signal_handler_win.cc
+++ b/runtime/vm/signal_handler_win.cc
@@ -13,41 +13,34 @@ uintptr_t SignalHandler::GetProgramCounter(const mcontext_t& mcontext) {
return 0;
}
-
uintptr_t SignalHandler::GetFramePointer(const mcontext_t& mcontext) {
UNIMPLEMENTED();
return 0;
}
-
uintptr_t SignalHandler::GetCStackPointer(const mcontext_t& mcontext) {
UNIMPLEMENTED();
return 0;
}
-
uintptr_t SignalHandler::GetDartStackPointer(const mcontext_t& mcontext) {
UNIMPLEMENTED();
return 0;
}
-
uintptr_t SignalHandler::GetLinkRegister(const mcontext_t& mcontext) {
UNIMPLEMENTED();
return 0;
}
-
void SignalHandler::InstallImpl(SignalAction action) {
UNIMPLEMENTED();
}
-
void SignalHandler::Remove() {
UNIMPLEMENTED();
}
-
} // namespace dart
#endif // defined(HOST_OS_WINDOWS)
« no previous file with comments | « runtime/vm/signal_handler_macos.cc ('k') | runtime/vm/simulator_arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698