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

Unified Diff: src/base/platform/platform-qnx.cc

Issue 2299753002: Made zone segments aligned in memory and included a pointer to the zone in the header. Larger objec…
Patch Set: Reaction to comments Created 4 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: src/base/platform/platform-qnx.cc
diff --git a/src/base/platform/platform-qnx.cc b/src/base/platform/platform-qnx.cc
index 6ff953d65cda0d423c06880c7e7255cd3f8efe42..d48300425e780f00460b5541680fbf4a3fc9b012 100644
--- a/src/base/platform/platform-qnx.cc
+++ b/src/base/platform/platform-qnx.cc
@@ -238,11 +238,7 @@ VirtualMemory::~VirtualMemory() {
}
}
-
-bool VirtualMemory::IsReserved() {
- return address_ != NULL;
-}
-
+bool VirtualMemory::IsReserved() const { return address_ != NULL; }
void VirtualMemory::Reset() {
address_ = NULL;

Powered by Google App Engine
This is Rietveld 408576698