diff options
author | Tom Sepez <tsepez@chromium.org> | 2017-04-25 10:37:47 -0700 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-04-25 17:57:49 +0000 |
commit | a9deea931ed7c7526bb32e30c54d91763f8026e0 (patch) | |
tree | 32833dca01bfdf09cb5a8618bf992dacb7024c7c /core | |
parent | 6302288dec6111120749754ba8ec2d249b63404b (diff) | |
download | pdfium-a9deea931ed7c7526bb32e30c54d91763f8026e0.tar.xz |
Rename fx_basic_memmgr.cpp to fx_memory.cpp to match .h naming
Change-Id: I769d7f2c52b0a0db36be6145bfb626c126a58be9
Reviewed-on: https://pdfium-review.googlesource.com/4480
Commit-Queue: Tom Sepez <tsepez@chromium.org>
Commit-Queue: dsinclair <dsinclair@chromium.org>
Reviewed-by: dsinclair <dsinclair@chromium.org>
Diffstat (limited to 'core')
-rw-r--r-- | core/fxcrt/fx_memory.cpp (renamed from core/fxcrt/fx_basic_memmgr.cpp) | 4 | ||||
-rw-r--r-- | core/fxcrt/fx_memory_unittest.cpp (renamed from core/fxcrt/fx_basic_memmgr_unittest.cpp) | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/core/fxcrt/fx_basic_memmgr.cpp b/core/fxcrt/fx_memory.cpp index 75bc2bc1f1..2807139aa2 100644 --- a/core/fxcrt/fx_basic_memmgr.cpp +++ b/core/fxcrt/fx_memory.cpp @@ -4,10 +4,10 @@ // Original code copyright 2014 Foxit Software Inc. http://www.foxitsoftware.com -#include <stdlib.h> // For abort(). - #include "core/fxcrt/fx_memory.h" +#include <stdlib.h> // For abort(). + pdfium::base::PartitionAllocatorGeneric gArrayBufferPartitionAllocator; pdfium::base::PartitionAllocatorGeneric gStringPartitionAllocator; diff --git a/core/fxcrt/fx_basic_memmgr_unittest.cpp b/core/fxcrt/fx_memory_unittest.cpp index fdffd98f19..ae15db2a72 100644 --- a/core/fxcrt/fx_basic_memmgr_unittest.cpp +++ b/core/fxcrt/fx_memory_unittest.cpp @@ -2,9 +2,10 @@ // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. +#include "core/fxcrt/fx_memory.h" + #include <limits> -#include "core/fxcrt/fx_memory.h" #include "testing/gtest/include/gtest/gtest.h" namespace { |