summaryrefslogtreecommitdiffstats
path: root/Source/WebCore/platform/android
diff options
context:
space:
mode:
authorSteve Block <steveblock@google.com>2011-10-20 11:55:49 +0100
committerSteve Block <steveblock@google.com>2011-10-25 18:15:50 +0100
commit2df3aefb377b3f3c4af3b548b1980d8c8ae56844 (patch)
tree6f183d0da27c00b22bcce6d11f13563a6c99865f /Source/WebCore/platform/android
parent2a9675cb0ba09718f308bc6edff3e2b6a5170383 (diff)
downloadexternal_webkit-2df3aefb377b3f3c4af3b548b1980d8c8ae56844.zip
external_webkit-2df3aefb377b3f3c4af3b548b1980d8c8ae56844.tar.gz
external_webkit-2df3aefb377b3f3c4af3b548b1980d8c8ae56844.tar.bz2
Rename LOGV(_IF) to ALOGV(_IF) DO NOT MERGE
See https://android-git.corp.google.com/g/#/c/143865 Bug: 5449033 Change-Id: I821098330652380686aca9e83222936bd5678970
Diffstat (limited to 'Source/WebCore/platform/android')
-rw-r--r--Source/WebCore/platform/android/SharedTimerAndroid.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/WebCore/platform/android/SharedTimerAndroid.cpp b/Source/WebCore/platform/android/SharedTimerAndroid.cpp
index e4f3b36..a3f3db5 100644
--- a/Source/WebCore/platform/android/SharedTimerAndroid.cpp
+++ b/Source/WebCore/platform/android/SharedTimerAndroid.cpp
@@ -51,7 +51,7 @@ void setSharedTimerFireTime(double fireTime)
{
long long timeInMs = static_cast<long long>((fireTime - WTF::currentTime()) * 1000);
- LOGV("setSharedTimerFireTime: in %ld millisec", timeInMs);
+ ALOGV("setSharedTimerFireTime: in %ld millisec", timeInMs);
if (JavaSharedClient::GetTimerClient())
JavaSharedClient::GetTimerClient()->setSharedTimer(timeInMs);
}