| Index: third_party/WebKit/Source/wtf/Partitions.h
|
| diff --git a/third_party/WebKit/Source/wtf/Partitions.h b/third_party/WebKit/Source/wtf/Partitions.h
|
| index 3e4eeed090bdfdce93b4071df3876e54a519597f..a36c826b643ad5f2fc2a169976cdb1a7c3aa80c5 100644
|
| --- a/third_party/WebKit/Source/wtf/Partitions.h
|
| +++ b/third_party/WebKit/Source/wtf/Partitions.h
|
| @@ -117,13 +117,6 @@ public:
|
| {
|
| return partitionReallocGeneric(Partitions::fastMallocPartition(), p, n);
|
| }
|
| - static char* fastStrDup(const char* src)
|
| - {
|
| - size_t len = strlen(src) + 1;
|
| - char* dup = static_cast<char*>(fastMalloc(len));
|
| - memcpy(dup, src, len);
|
| - return dup;
|
| - }
|
| static void fastFree(void* p)
|
| {
|
| partitionFreeGeneric(Partitions::fastMallocPartition(), p);
|
|
|