| Index: base/test/malloc_wrapper.cc
|
| diff --git a/ui/compositor/reflector.cc b/base/test/malloc_wrapper.cc
|
| similarity index 61%
|
| copy from ui/compositor/reflector.cc
|
| copy to base/test/malloc_wrapper.cc
|
| index 31dcdaef6105459ab2c82fa60cc5a1b6d03703f2..eb280a3eeea52f49e534c7c5e3f6f7a40e80a750 100644
|
| --- a/ui/compositor/reflector.cc
|
| +++ b/base/test/malloc_wrapper.cc
|
| @@ -2,11 +2,10 @@
|
| // Use of this source code is governed by a BSD-style license that can be
|
| // found in the LICENSE file.
|
|
|
| -#include "ui/compositor/reflector.h"
|
| +#include "malloc_wrapper.h"
|
|
|
| -namespace ui {
|
| +#include <stdlib.h>
|
|
|
| -Reflector::~Reflector() {
|
| +void* MallocWrapper(size_t size) {
|
| + return malloc(size);
|
| }
|
| -
|
| -} // namespace ui
|
|
|