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

Unified Diff: runtime/vm/signal_handler_fuchsia.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_android.cc ('k') | runtime/vm/signal_handler_linux.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/signal_handler_fuchsia.cc
diff --git a/runtime/vm/signal_handler_fuchsia.cc b/runtime/vm/signal_handler_fuchsia.cc
index e64dc4f7c22c7a40275e9b0a1ba4832b8b86b46f..a0f0cf1af178a0b0c90aca121c8a5731d5753dc8 100644
--- a/runtime/vm/signal_handler_fuchsia.cc
+++ b/runtime/vm/signal_handler_fuchsia.cc
@@ -16,36 +16,30 @@ 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();
}
« no previous file with comments | « runtime/vm/signal_handler_android.cc ('k') | runtime/vm/signal_handler_linux.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698