diff options
author | Steve Block <steveblock@google.com> | 2011-12-20 16:21:35 +0000 |
---|---|---|
committer | Steve Block <steveblock@google.com> | 2012-01-03 22:38:06 +0000 |
commit | a09e7cf49f43950a799f936bf42a9912d696547b (patch) | |
tree | 108947d0cc5707c152e6818fc81998c71a944524 /Source/WebKit/android/benchmark/main.cpp | |
parent | cd962bb91932eb0f0ef6d84a04adbba2ba62707a (diff) | |
download | external_webkit-a09e7cf49f43950a799f936bf42a9912d696547b.zip external_webkit-a09e7cf49f43950a799f936bf42a9912d696547b.tar.gz external_webkit-a09e7cf49f43950a799f936bf42a9912d696547b.tar.bz2 |
Rename (IF_)LOGD(_IF) to (IF_)ALOGD(_IF) DO NOT MERGE
See https://android-git.corp.google.com/g/156016
Bug: 5449033
Change-Id: I35a9fa5e53a83a9c9a920333a3752dd151fbd3b8
Diffstat (limited to 'Source/WebKit/android/benchmark/main.cpp')
-rw-r--r-- | Source/WebKit/android/benchmark/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/WebKit/android/benchmark/main.cpp b/Source/WebKit/android/benchmark/main.cpp index fcb797d..df6db86 100644 --- a/Source/WebKit/android/benchmark/main.cpp +++ b/Source/WebKit/android/benchmark/main.cpp @@ -47,13 +47,13 @@ int main(int argc, char** argv) { if (x) { width = atoi(optarg); height = atoi(x + 1); - LOGD("Rendering page at %dx%d", width, height); + ALOGD("Rendering page at %dx%d", width, height); } } else if (c == 'r') { reloadCount = atoi(optarg); if (reloadCount < 0) reloadCount = 0; - LOGD("Reloading %d times", reloadCount); + ALOGD("Reloading %d times", reloadCount); } } if (optind >= argc) { |