| 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 b8d2e2d70f5ac25e1cae2f0d000bd2fd2352ac3e..6d5298743bd01b201485f6d57771ce20e6d3130c 100644
|
| --- a/third_party/WebKit/Source/core/testing/Internals.cpp
|
| +++ b/third_party/WebKit/Source/core/testing/Internals.cpp
|
| @@ -1600,30 +1600,6 @@ String Internals::dumpRefCountedInstanceCounts() const
|
| return WTF::dumpRefCountedInstanceCounts();
|
| }
|
|
|
| -unsigned Internals::numberOfConsoleMessages(Document* document) const
|
| -{
|
| - if (!document->frame())
|
| - return 0;
|
| -
|
| - MainThreadDebugger* debugger = MainThreadDebugger::instance();
|
| - unsigned total = 0;
|
| - unsigned withArguments = 0;
|
| - debugger->debugger()->consoleMessagesCount(debugger->contextGroupId(document->frame()), &total, &withArguments);
|
| - return total;
|
| -}
|
| -
|
| -unsigned Internals::numberOfConsoleMessagesWithArguments(Document* document) const
|
| -{
|
| - if (!document->frame())
|
| - return 0;
|
| -
|
| - MainThreadDebugger* debugger = MainThreadDebugger::instance();
|
| - unsigned total = 0;
|
| - unsigned withArguments = 0;
|
| - debugger->debugger()->consoleMessagesCount(debugger->contextGroupId(document->frame()), &total, &withArguments);
|
| - return withArguments;
|
| -}
|
| -
|
| Vector<unsigned long> Internals::setMemoryCacheCapacities(unsigned long minDeadBytes, unsigned long maxDeadBytes, unsigned long totalBytes)
|
| {
|
| Vector<unsigned long> result;
|
|
|