• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2013 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 #include "allocator_shim/allocator_stub.h"
6 
7 #if defined(OS_MACOSX) || defined(OS_ANDROID)
8 #error "The allocator stub isn't supported (or needed) on mac or android."
9 #endif
10 
Allocate(std::size_t n)11 void* Allocate(std::size_t n) {
12   return operator new(n);
13 }
14 
Dellocate(void * p)15 void Dellocate(void* p) {
16   return operator delete(p);
17 }
18