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

Unified Diff: runtime/vm/native_symbol_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/native_symbol_macos.cc ('k') | runtime/vm/object.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/native_symbol_win.cc
diff --git a/runtime/vm/native_symbol_win.cc b/runtime/vm/native_symbol_win.cc
index 80cf3e0c290d8f6145c0c2de01b7a23e477683df..d1f65c7aa182002d2a2e9b1648b2f65737a1dcd2 100644
--- a/runtime/vm/native_symbol_win.cc
+++ b/runtime/vm/native_symbol_win.cc
@@ -29,7 +29,6 @@ void NativeSymbolResolver::InitOnce() {
}
}
-
void NativeSymbolResolver::ShutdownOnce() {
MutexLocker lock(lock_);
if (!running_) {
@@ -43,7 +42,6 @@ void NativeSymbolResolver::ShutdownOnce() {
}
}
-
char* NativeSymbolResolver::LookupSymbolName(uintptr_t pc, uintptr_t* start) {
static const intptr_t kMaxNameLength = 2048;
static const intptr_t kSymbolInfoSize = sizeof(SYMBOL_INFO); // NOLINT.
@@ -73,12 +71,10 @@ char* NativeSymbolResolver::LookupSymbolName(uintptr_t pc, uintptr_t* start) {
return strdup(pSymbol->Name);
}
-
void NativeSymbolResolver::FreeSymbolName(char* name) {
free(name);
}
-
bool NativeSymbolResolver::LookupSharedObject(uword pc,
uword* dso_base,
char** dso_name) {
« no previous file with comments | « runtime/vm/native_symbol_macos.cc ('k') | runtime/vm/object.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698