diff options
author | Android (Google) Code Review <android-gerrit@google.com> | 2009-07-02 15:32:52 -0700 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2009-07-02 15:32:52 -0700 |
commit | 62485e6c807bf7a70cd9051f4a15ab89539ac037 (patch) | |
tree | 4e3b4047dd5cada2a1fb09f54ec074d6c5147cc5 /WebKit | |
parent | df59d375fab91d697b28bc02cfcc3ca7ee105a94 (diff) | |
parent | b9e110b536fec5900ef1ea3ea99789d937eba5b8 (diff) | |
download | external_webkit-62485e6c807bf7a70cd9051f4a15ab89539ac037.zip external_webkit-62485e6c807bf7a70cd9051f4a15ab89539ac037.tar.gz external_webkit-62485e6c807bf7a70cd9051f4a15ab89539ac037.tar.bz2 |
Merge change 5931
* changes:
Remove JavaScript node size in the instrumentation as it is using arena now. Added JSC namespace for the TimeCounter.
Diffstat (limited to 'WebKit')
-rw-r--r-- | WebKit/android/TimeCounter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/WebKit/android/TimeCounter.cpp b/WebKit/android/TimeCounter.cpp index 9e8f432..a8de243 100644 --- a/WebKit/android/TimeCounter.cpp +++ b/WebKit/android/TimeCounter.cpp @@ -45,6 +45,7 @@ using namespace WebCore; using namespace WTF; +using namespace JSC; namespace android { @@ -119,7 +120,6 @@ void TimeCounter::report(const KURL& url, int live, int dead, size_t arenaSize) Heap::Statistics jsHeapStatistics = JSDOMWindow::commonJSGlobalData()->heap.statistics(); LOGD("Current JavaScript heap size is %d and has %d bytes free", jsHeapStatistics.size, jsHeapStatistics.free); - LOGD("Current JavaScript nodes use %d bytes", JSC::Node::reportJavaScriptNodesSize()); #endif LOGD("Current CSS styles use %d bytes", StyleBase::reportStyleSize()); LOGD("Current DOM nodes use %d bytes", WebCore::Node::reportDOMNodesSize()); |