Fix missing namespace for GetVirtualMemoryCageDataPageAllocator

Bug: chromium:1218005
Change-Id: I533e9fccc48767f4fccc8746e182682abd36c5e5
Cq-Include-Trybots: luci.v8.try:v8_linux64_heap_sandbox_dbg_ng
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3106387
Reviewed-by: Igor Sheludko <ishell@chromium.org>
Commit-Queue: Samuel Groß <saelo@chromium.org>
Cr-Commit-Position: refs/heads/main@{#76380}
This commit is contained in:
Samuel Groß 2021-08-19 10:08:30 +02:00 committed by V8 LUCI CQ
parent d586518a36
commit 33fb126a57

View File

@ -6050,7 +6050,7 @@ void v8::V8::InitializeExternalStartupDataFromFile(const char* snapshot_blob) {
const char* v8::V8::GetVersion() { return i::Version::GetVersion(); }
#ifdef V8_VIRTUAL_MEMORY_CAGE
PageAllocator* GetVirtualMemoryCageDataPageAllocator() {
PageAllocator* v8::V8::GetVirtualMemoryCageDataPageAllocator() {
CHECK(i::GetProcessWideVirtualMemoryCage()->is_initialized());
return i::GetProcessWideVirtualMemoryCage()->GetDataCagePageAllocator();
}