| Index: base/process/memory_stubs.cc
|
| diff --git a/base/process/memory_stubs.cc b/base/process/memory_stubs.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..b06c7d5f2b53ff8d26f1128298f66e544bb23c3a
|
| --- /dev/null
|
| +++ b/base/process/memory_stubs.cc
|
| @@ -0,0 +1,19 @@
|
| +// Copyright (c) 2013 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "base/process/memory.h"
|
| +
|
| +namespace base {
|
| +
|
| +void EnableTerminationOnOutOfMemory() {
|
| +}
|
| +
|
| +void EnableTerminationOnHeapCorruption() {
|
| +}
|
| +
|
| +bool AdjustOOMScore(ProcessId process, int score) {
|
| + return false;
|
| +}
|
| +
|
| +} // namespace base
|
|
|