| Index: third_party/WebKit/Source/core/testing/Internals.cpp
|
| diff --git a/third_party/WebKit/Source/core/testing/Internals.cpp b/third_party/WebKit/Source/core/testing/Internals.cpp
|
| index ac6b999f106e7f985a3c63e946668577df6b066a..21c35038a70d2d6ab26fc4ef12acada8418557f4 100644
|
| --- a/third_party/WebKit/Source/core/testing/Internals.cpp
|
| +++ b/third_party/WebKit/Source/core/testing/Internals.cpp
|
| @@ -1847,18 +1847,6 @@ String Internals::dumpRefCountedInstanceCounts() const {
|
| return WTF::dumpRefCountedInstanceCounts();
|
| }
|
|
|
| -Vector<unsigned long> Internals::setMemoryCacheCapacities(
|
| - unsigned long minDeadBytes,
|
| - unsigned long maxDeadBytes,
|
| - unsigned long totalBytes) {
|
| - Vector<unsigned long> result;
|
| - result.append(memoryCache()->minDeadCapacity());
|
| - result.append(memoryCache()->maxDeadCapacity());
|
| - result.append(memoryCache()->capacity());
|
| - memoryCache()->setCapacities(minDeadBytes, maxDeadBytes, totalBytes);
|
| - return result;
|
| -}
|
| -
|
| bool Internals::hasGrammarMarker(Document* document, int from, int length) {
|
| ASSERT(document);
|
| if (!document->frame())
|
|
|