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

Unified Diff: runtime/bin/socket.h

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/bin/snapshot_utils.cc ('k') | runtime/bin/socket.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/bin/socket.h
diff --git a/runtime/bin/socket.h b/runtime/bin/socket.h
index 29edee9005217c3a53c9066dfde0d8ea5f89991d..8049acd71fc7b36931939b95a1eb8027f19e0644 100644
--- a/runtime/bin/socket.h
+++ b/runtime/bin/socket.h
@@ -88,7 +88,6 @@ class Socket : public ReferenceCounted<Socket> {
DISALLOW_COPY_AND_ASSIGN(Socket);
};
-
class ServerSocket {
public:
static const intptr_t kTemporaryFailure = -2;
@@ -116,7 +115,6 @@ class ServerSocket {
DISALLOW_IMPLICIT_CONSTRUCTORS(ServerSocket);
};
-
class ListeningSocketRegistry {
public:
ListeningSocketRegistry()
@@ -203,7 +201,6 @@ class ListeningSocketRegistry {
return static_cast<uint32_t>((i + 1) & 0xFFFFFFFF);
}
-
static void* GetHashmapKeyFromIntptr(intptr_t i) {
return reinterpret_cast<void*>(i + 1);
}
« no previous file with comments | « runtime/bin/snapshot_utils.cc ('k') | runtime/bin/socket.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698