1 // Copyright (c) 2018 The Chromium Authors. All rights reserved. 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #ifndef THIRD_PARTY_BASE_ALLOCATOR_PARTITION_ALLOCATOR_PAGE_ALLOCATOR_INTERNAL_H_ 6 #define THIRD_PARTY_BASE_ALLOCATOR_PARTITION_ALLOCATOR_PAGE_ALLOCATOR_INTERNAL_H_ 7 8 namespace pdfium { 9 namespace base { 10 11 void* SystemAllocPages(void* hint, 12 size_t length, 13 PageAccessibilityConfiguration accessibility, 14 PageTag page_tag, 15 bool commit); 16 17 } // namespace base 18 } // namespace pdfium 19 20 #endif // THIRD_PARTY_BASE_ALLOCATOR_PARTITION_ALLOCATOR_PAGE_ALLOCATOR_INTERNAL_H_ 21