From 71bb3c15a1b7ca1be05869dff50a230a82cfa37a Mon Sep 17 00:00:00 2001 From: Feng Qian Date: Thu, 20 Aug 2009 08:51:55 -0700 Subject: Fix some typos when WEBCORE_INSTRUMENTATION is on. --- WebCore/bindings/v8/V8Proxy.cpp | 4 ++-- WebCore/bindings/v8/V8Proxy.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/WebCore/bindings/v8/V8Proxy.cpp b/WebCore/bindings/v8/V8Proxy.cpp index e2c1e98..1cfafb8 100644 --- a/WebCore/bindings/v8/V8Proxy.cpp +++ b/WebCore/bindings/v8/V8Proxy.cpp @@ -396,12 +396,12 @@ v8::Local V8Proxy::runScript(v8::Handle script, bool isIn #ifdef ANDROID_INSTRUMENT { android::TimeCounter::start(android::TimeCounter::JavaScriptExecuteTimeCounter); - v8::Local result = runScriptInternal(script, inline_code); + v8::Local result = runScriptInternal(script, isInlineCode); android::TimeCounter::record(android::TimeCounter::JavaScriptExecuteTimeCounter, __FUNCTION__); return result; } -v8::Local V8Proxy::runScriptInternal(v8::Handle script, bool inline_code) +v8::Local V8Proxy::runScriptInternal(v8::Handle script, bool isInlineCode) #endif { if (script.IsEmpty()) diff --git a/WebCore/bindings/v8/V8Proxy.h b/WebCore/bindings/v8/V8Proxy.h index d2c0181..d8f546c 100644 --- a/WebCore/bindings/v8/V8Proxy.h +++ b/WebCore/bindings/v8/V8Proxy.h @@ -227,7 +227,7 @@ namespace WebCore { v8::Local runScript(v8::Handle, bool isInlineCode); #ifdef ANDROID_INSTRUMENT - v8::Local RunScriptInternal(v8::Handle script, bool inline_code); + v8::Local runScriptInternal(v8::Handle script, bool inline_code); #endif // Call the function with the given receiver and arguments. @@ -309,7 +309,7 @@ namespace WebCore { static v8::Handle compileScript(v8::Handle code, const String& fileName, int baseLine); #ifdef ANDROID_INSTRUMENT - static v8::Handle CompileScriptInternal(v8::Handle code, const String& fileName, int baseLine); + static v8::Handle compileScriptInternal(v8::Handle code, const String& fileName, int baseLine); #endif // If the exception code is different from zero, a DOM exception is -- cgit v1.1